Project 4. Wrangle and Analyze Data - WeRateDOgs
TABLE OF CONTENTS
I.Introduction
II.Gathering Data
III.Assesing Data
IV.Cleaning Data
V.Visualyzing Data
I. Introduction
The goal of this project is to wrangle WeRateDogs Twitter data to create interesting and trustworthy analyses and visualizations.
II. Gathering data
I wil gather data from the following datasets:
1.Enhanced Twitter Archive
The WeRateDogs Twitter archive contains basic tweet data for all 5000+ of their tweets provided by Udacity: twitter_archive_enhanced.csv
2.Data via the Twitter API
I tried to gather data via Twitter (X) API. I went through all the necessary steps (see the commented codes below). I have learned on the way, that due to the change of conditions for the Twitter (X) developer free account I wouldn't be able to use API as you cannot use the Search Tweets feature using the Free Level Access on the Twitter API. More information: https://developer.twitter.com/en/docs/twitter-api
In this case, I decided to continue with the project working on Udacity JSON file provided for those who choose to access the Twitter data without actually creating a Twitter account. However, I wouldn't be able to keep track of tweets provided by Udacity that have been deleted (as to do this I would need API access). All the coding steps leading me to this decision, are kept in the Jupyter notebook in the commented sections.
3.Additional data for the 3000 most recent tweets: tweet image predictions:image_predictions.tsv downloaded programmatically using the Requests library and the following URL: https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv
4.Udacity json file for retweet count and favorite count: tweet_json.txt downloaded programmatically using the Requests library and the following URL: https://video.udacity-data.com/topher/2018/November/5be5fb7d_tweet-json/tweet-json.txt
GATHER
First, we will import the Python libraries
#importing libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import requests
import tweepy
import os
import json
import re
import time
from timeit import Timer
import warnings
from IPython.display import Image
from functools import reduce
import datetime
import statsmodels.api as sm
No, we will download and read to dataframe the twitter (X) archive csv files provided by Udacity
#read WeRateDogs X Archive csv file
x_archive = pd.read_csv('twitter-archive-enhanced.csv')
#check
x_archive.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
We will use URL provided by Udacity to download the data of the second dataset and read it into a dataframe programatically.
# Download Tweet image predictions file from the provided URL file using the Requests library
url = 'https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
response = requests.get(url)
#check
response
<Response [200]>
We will save the the data into csv file
# Save the file
predictions = pd.read_csv('image-predictions.tsv', sep='\t')
The Twitter (X) archive provided by Udacity does not contain all of the necessary data (retweet and favorite counts). I tried to:
(As confidential, the consumer_key, consumer_secret, access_token, and access_secret have been replaced here by generic strings).
Please see the commented codes below.
#check for Twitter succesful authentication (the result was: 'Successful Authentication')
#api_key = "ixxxxxxxxxxxxxxxxxxxxxxxs"
#api_secret = "Uxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxf"
#access_token = "1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxT"
#access_secret = "cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxW"
# Authenticate to Twitter
#auth = tweepy.OAuthHandler(api_key, api_secret)
#auth.set_access_token(access_token, access_secret)
#api = tweepy.API(auth)
#try:
# api.verify_credentials()
# print('Successful Authentication')
#except:
# print('Failed authentication')
# Check for status
#As confidential, the consumer_key, consumer_secret, access_token, and access_secret have been replaced here by generic strings.
#api_key = 'ixxxxxxxxxxxxxxxxxxxxxxxs'
#api_secret = 'Uxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxf'
#access_token = '1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxT'
#access_secret = 'cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxW'
#auth = tweepy.OAuthHandler(api_key, api_secret)
#auth.set_access_token(access_token, access_secret)
#api = tweepy.API(auth, wait_on_rate_limit=True)
#Testing 1
#tweet = api.get_status(Tweet_id, tweet_mode='extended')
#print(tweet['text'])
#Testing 2
#for tweet_id in x_archive.tweet_id:
# print(tweet_id)
# tweet_response = api.get_status(tweet_id, tweet_mode='extended')
# tweet_info = tweet_response._json
# break
#tweet_info
# I am getting API access error here.
From I have learned, Twitter Free Developer Account access rules has changed lately. You cannot use the Search Tweets feature using the Free Level Access on the Twitter API. More information: https://developer.twitter.com/en/docs/twitter-api
In this case, we will use Udacity off-line recources starting from copy-pasting and hashtagging the first part of code with API key and tokens
#Udacity code
#import tweepy
#from tweepy import OAuthHandler
#import json
#from timeit import default_timer as timer
# Query Twitter API for each tweet in the Twitter archive and save JSON in a text file
# These are hidden to comply with Twitter's API terms and conditions
#consumer_key = 'HIDDEN'
#consumer_secret = 'HIDDEN'
#access_token = 'HIDDEN'
#access_secret = 'HIDDEN'
#auth = OAuthHandler(consumer_key, consumer_secret)
#auth.set_access_token(access_token, access_secret)
#api = tweepy.API(auth, wait_on_rate_limit=True)
# NOTE TO STUDENT WITH MOBILE VERIFICATION ISSUES:
# df_1 is a DataFrame with the twitter_archive_enhanced.csv file. You may have to
# change line 17 to match the name of your DataFrame with twitter_archive_enhanced.csv
# NOTE TO REVIEWER: this student had mobile verification issues so the following
# Twitter API code was sent to this student from a Udacity instructor
# Tweet IDs for which to gather additional data via Twitter's API
#tweet_ids = x_archive.tweet_id.values
#len(tweet_ids)
# Query Twitter's API for JSON data for each tweet ID in the Twitter archive
#count = 0
#fails_dict = {}
#start = timer()
# Save each tweet's returned JSON as a new line in a .txt file
#with open('tweet-json.txt', 'w') as outfile:
# # This loop will likely take 20-30 minutes to run because of Twitter's rate limit
# for tweet_id in tweet_ids:
# count += 1
# print(str(count) + ": " + str(tweet_id))
# try:
# tweet = api.get_status(tweet_id, tweet_mode='extended')
# print("Success")
# json.dump(tweet._json, outfile)
# outfile.write('\n')
# except tweepy.TweepError as e:
# print("Fail")
# fails_dict[tweet_id] = e
# pass
##end = timer()
##print(end - start)
#print(fails_dict)
Now, we will read the json file provided by Udacity line by line to create a dataframe with tweet_id, favorite_count, retweet_count, retweet status and url
#Read json file provided by Udacity line by line to create a dataframe with tweet id,
#favorite count, retweet count, retweet status and url.
temp = []
import json
with open('tweet-json-new.txt', encoding='utf-8') as js_file:
for i in js_file:
data = json.loads(i)
tweet_id = data['id']
tweet = data['full_text']
url1 = tweet[tweet.find('https'):]
favorite_count = data['favorite_count']
retweet_count = data['retweet_count']
retweet_status = data['retweet_status'] = data.get('retweet_status', 'Original tweet')
if retweet_status == 'Original tweet':
url = url1
else:
retweeted_status = 'A retweet'
url = 'A retweet'
temp.append({'tweet_id': tweet_id,'favorite_count': favorite_count,'retweet_status': retweet_status,
'url': url,'retweet_count': retweet_count})
#create a new DataFrame
df_new = pd.DataFrame(temp, columns = ['tweet_id', 'favorite_count','retweet_count', 'retweet_status', 'url'])
#check
#df_new.head()
#download file to csv
df_new.to_csv('tweet_json_n.txt', index=False)
We will read the csv file and store it in th tweet_data dataframe
#read the new csv file and store it in tweet_data dataframe
#tweet_data = pd.read_csv('tweet_json.txt')
tweet_data = pd.read_csv('tweet_json_n.txt')
#check
tweet_data.head()
| tweet_id | favorite_count | retweet_count | retweet_status | url | |
|---|---|---|---|---|---|
| 0 | 892420643555336193 | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU |
| 1 | 892177421306343426 | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV |
| 2 | 891815181378084864 | 25461 | 4328 | Original tweet | https://t.co/wUnZnhtVJB |
| 3 | 891689557279858688 | 42908 | 8964 | Original tweet | https://t.co/tD36da7qLQ |
| 4 | 891327558926688256 | 41048 | 9774 | Original tweet | https://t.co/AtUZn91f7f |
ASSESSING DATA
After gathering the three pieces of data, I will:
I will use two types of assessment:
VISUAL ASSESSMENT
x_archive
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
| 5 | 891087950875897856 | NaN | NaN | 2017-07-29 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891087950875897856/photo/1 | 13 | 10 | None | None | None | None | None |
| 6 | 890971913173991426 | NaN | NaN | 2017-07-28 16:27:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl | NaN | NaN | NaN | https://gofundme.com/ydvmve-surgery-for-jax,https://twitter.com/dog_rates/status/890971913173991426/photo/1 | 13 | 10 | Jax | None | None | None | None |
| 7 | 890729181411237888 | NaN | NaN | 2017-07-28 00:22:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890729181411237888/photo/1,https://twitter.com/dog_rates/status/890729181411237888/photo/1 | 13 | 10 | None | None | None | None | None |
| 8 | 890609185150312448 | NaN | NaN | 2017-07-27 16:25:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890609185150312448/photo/1 | 13 | 10 | Zoey | None | None | None | None |
| 9 | 890240255349198849 | NaN | NaN | 2017-07-26 15:59:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890240255349198849/photo/1 | 14 | 10 | Cassie | doggo | None | None | None |
| 10 | 890006608113172480 | NaN | NaN | 2017-07-26 00:31:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890006608113172480/photo/1,https://twitter.com/dog_rates/status/890006608113172480/photo/1 | 13 | 10 | Koda | None | None | None | None |
| 11 | 889880896479866881 | NaN | NaN | 2017-07-25 16:11:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889880896479866881/photo/1 | 13 | 10 | Bruno | None | None | None | None |
| 12 | 889665388333682689 | NaN | NaN | 2017-07-25 01:55:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889665388333682689/photo/1 | 13 | 10 | None | None | None | None | puppo |
| 13 | 889638837579907072 | NaN | NaN | 2017-07-25 00:10:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889638837579907072/photo/1,https://twitter.com/dog_rates/status/889638837579907072/photo/1 | 12 | 10 | Ted | None | None | None | None |
| 14 | 889531135344209921 | NaN | NaN | 2017-07-24 17:02:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889531135344209921/photo/1 | 13 | 10 | Stuart | None | None | None | puppo |
| 15 | 889278841981685760 | NaN | NaN | 2017-07-24 00:19:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889278841981685760/video/1 | 13 | 10 | Oliver | None | None | None | None |
| 16 | 888917238123831296 | NaN | NaN | 2017-07-23 00:22:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888917238123831296/photo/1 | 12 | 10 | Jim | None | None | None | None |
| 17 | 888804989199671297 | NaN | NaN | 2017-07-22 16:56:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888804989199671297/photo/1,https://twitter.com/dog_rates/status/888804989199671297/photo/1 | 13 | 10 | Zeke | None | None | None | None |
| 18 | 888554962724278272 | NaN | NaN | 2017-07-22 00:23:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1,https://twitter.com/dog_rates/status/888554962724278272/photo/1 | 13 | 10 | Ralphus | None | None | None | None |
| 19 | 888202515573088257 | NaN | NaN | 2017-07-21 01:02:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX | 8.874740e+17 | 4.196984e+09 | 2017-07-19 00:47:34 +0000 | https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 | 13 | 10 | Canela | None | None | None | None |
| 20 | 888078434458587136 | NaN | NaN | 2017-07-20 16:49:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888078434458587136/photo/1,https://twitter.com/dog_rates/status/888078434458587136/photo/1 | 12 | 10 | Gerald | None | None | None | None |
| 21 | 887705289381826560 | NaN | NaN | 2017-07-19 16:06:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887705289381826560/photo/1 | 13 | 10 | Jeffrey | None | None | None | None |
| 22 | 887517139158093824 | NaN | NaN | 2017-07-19 03:39:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887517139158093824/video/1 | 14 | 10 | such | None | None | None | None |
| 23 | 887473957103951883 | NaN | NaN | 2017-07-19 00:47:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887473957103951883/photo/1,https://twitter.com/dog_rates/status/887473957103951883/photo/1 | 13 | 10 | Canela | None | None | None | None |
| 24 | 887343217045368832 | NaN | NaN | 2017-07-18 16:08:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887343217045368832/video/1 | 13 | 10 | None | None | None | None | None |
| 25 | 887101392804085760 | NaN | NaN | 2017-07-18 00:07:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887101392804085760/photo/1 | 12 | 10 | None | None | None | None | None |
| 26 | 886983233522544640 | NaN | NaN | 2017-07-17 16:17:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886983233522544640/photo/1,https://twitter.com/dog_rates/status/886983233522544640/photo/1 | 13 | 10 | Maya | None | None | None | None |
| 27 | 886736880519319552 | NaN | NaN | 2017-07-16 23:58:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b | NaN | NaN | NaN | https://www.gofundme.com/mingusneedsus,https://twitter.com/dog_rates/status/886736880519319552/photo/1,https://twitter.com/dog_rates/status/886736880519319552/photo/1 | 13 | 10 | Mingus | None | None | None | None |
| 28 | 886680336477933568 | NaN | NaN | 2017-07-16 20:14:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886680336477933568/photo/1 | 13 | 10 | Derek | None | None | None | None |
| 29 | 886366144734445568 | NaN | NaN | 2017-07-15 23:25:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886366144734445568/photo/1,https://twitter.com/dog_rates/status/886366144734445568/photo/1 | 12 | 10 | Roscoe | None | None | pupper | None |
| 30 | 886267009285017600 | 8.862664e+17 | 2.281182e+09 | 2017-07-15 16:51:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 31 | 886258384151887873 | NaN | NaN | 2017-07-15 16:17:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886258384151887873/photo/1 | 13 | 10 | Waffles | None | None | None | None |
| 32 | 886054160059072513 | NaN | NaN | 2017-07-15 02:45:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @Athletics: 12/10 #BATP https://t.co/WxwJmvjfxo | 8.860537e+17 | 1.960740e+07 | 2017-07-15 02:44:07 +0000 | https://twitter.com/dog_rates/status/886053434075471873,https://twitter.com/dog_rates/status/886053434075471873 | 12 | 10 | None | None | None | None | None |
| 33 | 885984800019947520 | NaN | NaN | 2017-07-14 22:10:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885984800019947520/photo/1 | 12 | 10 | Jimbo | None | None | None | None |
| 34 | 885528943205470208 | NaN | NaN | 2017-07-13 15:58:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885528943205470208/photo/1 | 13 | 10 | Maisey | None | None | None | None |
| 35 | 885518971528720385 | NaN | NaN | 2017-07-13 15:19:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk | NaN | NaN | NaN | https://twitter.com/4bonds2carbon/status/885517367337512960 | 14 | 10 | None | None | None | None | None |
| 36 | 885311592912609280 | NaN | NaN | 2017-07-13 01:35:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 | 8.305833e+17 | 4.196984e+09 | 2017-02-12 01:04:29 +0000 | https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 | 13 | 10 | Lilly | None | None | None | None |
| 37 | 885167619883638784 | NaN | NaN | 2017-07-12 16:03:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1,https://twitter.com/dog_rates/status/885167619883638784/photo/1 | 13 | 10 | None | None | None | None | None |
| 38 | 884925521741709313 | NaN | NaN | 2017-07-12 00:01:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884925521741709313/photo/1 | 12 | 10 | Earl | None | None | None | None |
| 39 | 884876753390489601 | NaN | NaN | 2017-07-11 20:47:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1,https://twitter.com/dog_rates/status/884876753390489601/photo/1 | 13 | 10 | Lola | None | None | None | None |
| 40 | 884562892145688576 | NaN | NaN | 2017-07-11 00:00:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884562892145688576/photo/1 | 13 | 10 | Kevin | None | None | None | None |
| 41 | 884441805382717440 | NaN | NaN | 2017-07-10 15:58:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884441805382717440/photo/1 | 14 | 10 | None | None | None | None | None |
| 42 | 884247878851493888 | NaN | NaN | 2017-07-10 03:08:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj | NaN | NaN | NaN | https://twitter.com/kaijohnson_19/status/883965650754039809 | 13 | 10 | None | None | None | None | None |
| 43 | 884162670584377345 | NaN | NaN | 2017-07-09 21:29:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884162670584377345/photo/1 | 12 | 10 | Yogi | doggo | None | None | None |
| 44 | 883838122936631299 | NaN | NaN | 2017-07-09 00:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883838122936631299/photo/1 | 12 | 10 | Noah | None | None | None | None |
| 45 | 883482846933004288 | NaN | NaN | 2017-07-08 00:28:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883482846933004288/photo/1,https://twitter.com/dog_rates/status/883482846933004288/photo/1 | 5 | 10 | Bella | None | None | None | None |
| 46 | 883360690899218434 | NaN | NaN | 2017-07-07 16:22:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883360690899218434/photo/1 | 13 | 10 | Grizzwald | None | floofer | None | None |
| 47 | 883117836046086144 | NaN | NaN | 2017-07-07 00:17:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883117836046086144/photo/1,https://twitter.com/dog_rates/status/883117836046086144/photo/1 | 13 | 10 | None | None | None | None | None |
| 48 | 882992080364220416 | NaN | NaN | 2017-07-06 15:58:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882992080364220416/photo/1,https://twitter.com/dog_rates/status/882992080364220416/photo/1 | 13 | 10 | Rusty | None | None | None | None |
| 49 | 882762694511734784 | NaN | NaN | 2017-07-06 00:46:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882762694511734784/photo/1 | 12 | 10 | Gus | None | None | pupper | None |
| 50 | 882627270321602560 | NaN | NaN | 2017-07-05 15:48:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882627270321602560/photo/1 | 13 | 10 | Stanley | None | None | None | None |
| 51 | 882268110199369728 | NaN | NaN | 2017-07-04 16:01:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1,https://twitter.com/dog_rates/status/882268110199369728/photo/1 | 13 | 10 | Alfy | None | None | None | None |
| 52 | 882045870035918850 | NaN | NaN | 2017-07-04 01:18:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1,https://twitter.com/dog_rates/status/882045870035918850/photo/1 | 13 | 10 | Koko | None | None | None | None |
| 53 | 881906580714921986 | NaN | NaN | 2017-07-03 16:04:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881906580714921986/photo/1 | 12 | 10 | Rey | None | None | None | None |
| 54 | 881666595344535552 | NaN | NaN | 2017-07-03 00:11:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881666595344535552/photo/1 | 13 | 10 | Gary | None | None | None | None |
| 55 | 881633300179243008 | 8.816070e+17 | 4.738443e+07 | 2017-07-02 21:58:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s | NaN | NaN | NaN | NaN | 17 | 10 | None | None | None | None | None |
| 56 | 881536004380872706 | NaN | NaN | 2017-07-02 15:32:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881536004380872706/video/1 | 14 | 10 | a | None | None | pupper | None |
| 57 | 881268444196462592 | NaN | NaN | 2017-07-01 21:49:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881268444196462592/photo/1 | 12 | 10 | Elliot | None | None | None | None |
| 58 | 880935762899988482 | NaN | NaN | 2017-06-30 23:47:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880935762899988482/photo/1 | 13 | 10 | Louis | None | None | None | None |
| 59 | 880872448815771648 | NaN | NaN | 2017-06-30 19:35:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880872448815771648/photo/1 | 12 | 10 | None | None | None | None | None |
| 60 | 880465832366813184 | NaN | NaN | 2017-06-29 16:39:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1,https://twitter.com/dog_rates/status/880465832366813184/photo/1 | 12 | 10 | Bella | None | None | None | None |
| 61 | 880221127280381952 | NaN | NaN | 2017-06-29 00:27:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880221127280381952/photo/1,https://twitter.com/dog_rates/status/880221127280381952/photo/1 | 12 | 10 | Jesse | None | None | None | None |
| 62 | 880095782870896641 | NaN | NaN | 2017-06-28 16:09:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880095782870896641/photo/1 | 11 | 10 | None | None | None | None | None |
| 63 | 879862464715927552 | NaN | NaN | 2017-06-28 00:42:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1,https://twitter.com/dog_rates/status/879862464715927552/photo/1 | 13 | 10 | Romeo | None | None | None | None |
| 64 | 879674319642796034 | 8.795538e+17 | 3.105441e+09 | 2017-06-27 12:14:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @RealKentMurphy 14/10 confirmed | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 65 | 879492040517615616 | NaN | NaN | 2017-06-27 00:10:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879492040517615616/photo/1 | 12 | 10 | Bailey | None | None | None | None |
| 66 | 879415818425184262 | NaN | NaN | 2017-06-26 19:07:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879415818425184262/video/1 | 13 | 10 | Duddles | None | None | None | None |
| 67 | 879376492567855104 | NaN | NaN | 2017-06-26 16:31:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879376492567855104/photo/1 | 12 | 10 | Jack | None | None | None | None |
| 68 | 879130579576475649 | NaN | NaN | 2017-06-26 00:13:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://… | 8.780576e+17 | 4.196984e+09 | 2017-06-23 01:10:23 +0000 | https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 | 14 | 10 | Emmy | None | None | None | None |
| 69 | 879050749262655488 | NaN | NaN | 2017-06-25 18:56:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879050749262655488/photo/1 | 11 | 10 | Steven | None | None | None | None |
| 70 | 879008229531029506 | NaN | NaN | 2017-06-25 16:07:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879008229531029506/photo/1 | 13 | 10 | Beau | None | None | None | None |
| 71 | 878776093423087618 | NaN | NaN | 2017-06-25 00:45:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/878776093423087618/photo/1,https://twitter.com/dog_rates/status/878776093423087618/photo/1 | 13 | 10 | Snoopy | None | None | None | puppo |
| 72 | 878604707211726852 | NaN | NaN | 2017-06-24 13:24:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa | NaN | NaN | NaN | https://twitter.com/bbcworld/status/878599868507402241 | 13 | 10 | None | None | None | None | None |
| 73 | 878404777348136964 | NaN | NaN | 2017-06-24 00:09:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps:/… | 8.782815e+17 | 4.196984e+09 | 2017-06-23 16:00:04 +0000 | https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 | 13 | 10 | Shadow | None | None | None | None |
| 74 | 878316110768087041 | NaN | NaN | 2017-06-23 18:17:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/i… | 6.690004e+17 | 4.196984e+09 | 2015-11-24 03:51:38 +0000 | https://twitter.com/dog_rates/status/669000397445533696/photo/1 | 11 | 10 | Terrance | None | None | None | None |
| 75 | 878281511006478336 | NaN | NaN | 2017-06-23 16:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 | NaN | NaN | NaN | https://www.gofundme.com/3yd6y1c,https://twitter.com/dog_rates/status/878281511006478336/photo/1 | 13 | 10 | Shadow | None | None | None | None |
| 76 | 878057613040115712 | NaN | NaN | 2017-06-23 01:10:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/878057613040115712/photo/1,https://twitter.com/dog_rates/status/878057613040115712/photo/1 | 14 | 10 | Emmy | None | None | None | None |
| 77 | 877736472329191424 | NaN | NaN | 2017-06-22 03:54:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877736472329191424/photo/1,https://twitter.com/dog_rates/status/877736472329191424/photo/1 | 13 | 10 | Aja | None | None | None | None |
| 78 | 877611172832227328 | NaN | NaN | 2017-06-21 19:36:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @rachel2195: @dog_rates the boyfriend and his soaking wet pupper h*cking love his new hat 14/10 https://t.co/dJx4Gzc50G | 8.768508e+17 | 5.128045e+08 | 2017-06-19 17:14:49 +0000 | https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1,https://twitter.com/rachel2195/status/876850772322988033/photo/1 | 14 | 10 | None | None | None | pupper | None |
| 79 | 877556246731214848 | NaN | NaN | 2017-06-21 15:58:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877556246731214848/photo/1 | 12 | 10 | Penny | None | None | None | None |
| 80 | 877316821321428993 | NaN | NaN | 2017-06-21 00:06:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877316821321428993/photo/1,https://twitter.com/dog_rates/status/877316821321428993/photo/1 | 13 | 10 | Dante | None | None | None | None |
| 81 | 877201837425926144 | NaN | NaN | 2017-06-20 16:29:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877201837425926144/photo/1,https://twitter.com/dog_rates/status/877201837425926144/photo/1 | 12 | 10 | Nelly | None | None | None | None |
| 82 | 876838120628539392 | NaN | NaN | 2017-06-19 16:24:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876838120628539392/photo/1,https://twitter.com/dog_rates/status/876838120628539392/photo/1 | 12 | 10 | Ginger | None | None | pupper | None |
| 83 | 876537666061221889 | NaN | NaN | 2017-06-18 20:30:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu | NaN | NaN | NaN | https://twitter.com/mpstowerham/status/876162994446753793 | 14 | 10 | None | None | None | None | None |
| 84 | 876484053909872640 | NaN | NaN | 2017-06-18 16:57:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876484053909872640/photo/1 | 13 | 10 | Benedict | None | None | None | None |
| 85 | 876120275196170240 | NaN | NaN | 2017-06-17 16:52:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876120275196170240/photo/1 | 13 | 10 | Venti | None | None | None | None |
| 86 | 875747767867523072 | NaN | NaN | 2017-06-16 16:11:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875747767867523072/photo/1 | 13 | 10 | Goose | None | None | None | None |
| 87 | 875144289856114688 | NaN | NaN | 2017-06-15 00:13:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875144289856114688/video/1 | 13 | 10 | Nugget | None | None | None | None |
| 88 | 875097192612077568 | NaN | NaN | 2017-06-14 21:06:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW | NaN | NaN | NaN | https://twitter.com/drboondoc/status/874413398133547008 | 13 | 10 | None | None | None | None | None |
| 89 | 875021211251597312 | NaN | NaN | 2017-06-14 16:04:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875021211251597312/photo/1,https://twitter.com/dog_rates/status/875021211251597312/photo/1 | 12 | 10 | None | None | None | None | None |
| 90 | 874680097055178752 | NaN | NaN | 2017-06-13 17:29:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874680097055178752/photo/1 | 12 | 10 | Cash | None | None | None | None |
| 91 | 874434818259525634 | NaN | NaN | 2017-06-13 01:14:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.c… | 8.663350e+17 | 4.196984e+09 | 2017-05-21 16:48:45 +0000 | https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 | 12 | 10 | Coco | None | None | None | None |
| 92 | 874296783580663808 | NaN | NaN | 2017-06-12 16:06:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874296783580663808/photo/1 | 13 | 10 | Jed | None | None | pupper | None |
| 93 | 874057562936811520 | NaN | NaN | 2017-06-12 00:15:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874057562936811520/photo/1 | 12 | 10 | None | None | None | None | None |
| 94 | 874012996292530176 | NaN | NaN | 2017-06-11 21:18:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874012996292530176/photo/1,https://twitter.com/dog_rates/status/874012996292530176/photo/1 | 13 | 10 | Sebastian | None | None | None | puppo |
| 95 | 873697596434513921 | NaN | NaN | 2017-06-11 00:25:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF | 8.688804e+17 | 4.196984e+09 | 2017-05-28 17:23:24 +0000 | https://twitter.com/dog_rates/status/868880397819494401/photo/1,https://twitter.com/dog_rates/status/868880397819494401/photo/1 | 14 | 10 | Walter | None | None | None | None |
| 96 | 873580283840344065 | NaN | NaN | 2017-06-10 16:39:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/873580283840344065/photo/1 | 13 | 10 | None | None | None | None | None |
| 97 | 873337748698140672 | NaN | NaN | 2017-06-10 00:35:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps:/… | 8.732138e+17 | 4.196984e+09 | 2017-06-09 16:22:42 +0000 | https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 | 12 | 10 | Sierra | None | None | pupper | None |
| 98 | 873213775632977920 | NaN | NaN | 2017-06-09 16:22:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ | NaN | NaN | NaN | https://www.gofundme.com/help-my-baby-sierra-get-better,https://twitter.com/dog_rates/status/873213775632977920/photo/1,https://twitter.com/dog_rates/status/873213775632977920/photo/1 | 12 | 10 | Sierra | None | None | pupper | None |
| 99 | 872967104147763200 | NaN | NaN | 2017-06-09 00:02:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872967104147763200/photo/1,https://twitter.com/dog_rates/status/872967104147763200/photo/1 | 12 | 10 | None | doggo | None | None | None |
| 100 | 872820683541237760 | NaN | NaN | 2017-06-08 14:20:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1,https://twitter.com/dog_rates/status/872820683541237760/photo/1 | 13 | 10 | None | None | None | None | None |
| 101 | 872668790621863937 | NaN | NaN | 2017-06-08 04:17:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @loganamnosis: Penelope here is doing me quite a divertir. Well done, @dog_rates! Loving the pupdate. 14/10, je jouerais de nouveau. htt… | 8.726576e+17 | 1.547674e+08 | 2017-06-08 03:32:35 +0000 | https://twitter.com/loganamnosis/status/872657584259551233/photo/1 | 14 | 10 | None | None | None | None | None |
| 102 | 872620804844003328 | NaN | NaN | 2017-06-08 01:06:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872620804844003328/photo/1 | 13 | 10 | Monkey | None | None | None | None |
| 103 | 872486979161796608 | NaN | NaN | 2017-06-07 16:14:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872486979161796608/photo/1 | 12 | 10 | None | None | None | None | None |
| 104 | 872261713294495745 | NaN | NaN | 2017-06-07 01:19:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872261713294495745/photo/1,https://twitter.com/dog_rates/status/872261713294495745/photo/1 | 13 | 10 | Harry | None | None | None | None |
| 105 | 872122724285648897 | NaN | NaN | 2017-06-06 16:07:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872122724285648897/photo/1,https://twitter.com/dog_rates/status/872122724285648897/photo/1 | 12 | 10 | Kody | None | None | None | None |
| 106 | 871879754684805121 | NaN | NaN | 2017-06-06 00:01:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871879754684805121/photo/1,https://twitter.com/dog_rates/status/871879754684805121/photo/1 | 13 | 10 | Lassie | None | None | None | None |
| 107 | 871762521631449091 | NaN | NaN | 2017-06-05 16:15:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1,https://twitter.com/dog_rates/status/871762521631449091/photo/1 | 12 | 10 | Rover | None | None | pupper | None |
| 108 | 871515927908634625 | NaN | NaN | 2017-06-04 23:56:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871515927908634625/photo/1,https://twitter.com/dog_rates/status/871515927908634625/photo/1 | 12 | 10 | Napolean | doggo | None | None | None |
| 109 | 871166179821445120 | NaN | NaN | 2017-06-04 00:46:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/X… | 8.410770e+17 | 4.196984e+09 | 2017-03-13 00:02:39 +0000 | https://twitter.com/dog_rates/status/841077006473256960/photo/1 | 12 | 10 | Dawn | None | None | None | None |
| 110 | 871102520638267392 | NaN | NaN | 2017-06-03 20:33:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH | NaN | NaN | NaN | https://twitter.com/animalcog/status/871075758080503809 | 14 | 10 | None | doggo | None | None | None |
| 111 | 871032628920680449 | NaN | NaN | 2017-06-03 15:55:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871032628920680449/photo/1 | 13 | 10 | Boomer | None | None | None | None |
| 112 | 870804317367881728 | NaN | NaN | 2017-06-03 00:48:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870804317367881728/photo/1 | 11 | 10 | None | None | None | None | None |
| 113 | 870726314365509632 | 8.707262e+17 | 1.648776e+07 | 2017-06-02 19:38:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @ComplicitOwl @ShopWeRateDogs >10/10 is reserved for dogs | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 114 | 870656317836468226 | NaN | NaN | 2017-06-02 15:00:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 | NaN | NaN | NaN | https://www.gofundme.com/help-fix-codys-torn-acl,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1,https://twitter.com/dog_rates/status/870656317836468226/photo/1 | 13 | 10 | Cody | None | None | None | None |
| 115 | 870374049280663552 | NaN | NaN | 2017-06-01 20:18:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870374049280663552/photo/1 | 13 | 10 | Zoey | None | None | None | None |
| 116 | 870308999962521604 | NaN | NaN | 2017-06-01 16:00:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870308999962521604/photo/1,https://twitter.com/dog_rates/status/870308999962521604/photo/1 | 13 | 10 | Rumble | None | None | None | None |
| 117 | 870063196459192321 | NaN | NaN | 2017-05-31 23:43:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870063196459192321/photo/1,https://twitter.com/dog_rates/status/870063196459192321/photo/1 | 14 | 10 | Clifford | None | None | None | None |
| 118 | 869988702071779329 | NaN | NaN | 2017-05-31 18:47:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10… | 8.591970e+17 | 4.196984e+09 | 2017-05-02 00:04:57 +0000 | https://twitter.com/dog_rates/status/859196978902773760/video/1 | 12 | 10 | quite | None | None | None | None |
| 119 | 869772420881756160 | NaN | NaN | 2017-05-31 04:27:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869772420881756160/photo/1 | 13 | 10 | Dewey | None | None | None | None |
| 120 | 869702957897576449 | NaN | NaN | 2017-05-30 23:51:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869702957897576449/photo/1 | 13 | 10 | Stanley | None | None | None | None |
| 121 | 869596645499047938 | NaN | NaN | 2017-05-30 16:49:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869596645499047938/photo/1,https://twitter.com/dog_rates/status/869596645499047938/photo/1 | 12 | 10 | Scout | doggo | None | None | None |
| 122 | 869227993411051520 | NaN | NaN | 2017-05-29 16:24:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869227993411051520/photo/1 | 13 | 10 | Gizmo | None | None | None | None |
| 123 | 868880397819494401 | NaN | NaN | 2017-05-28 17:23:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/868880397819494401/photo/1 | 14 | 10 | Walter | None | None | None | None |
| 124 | 868639477480148993 | NaN | NaN | 2017-05-28 01:26:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://… | 8.685523e+17 | 4.196984e+09 | 2017-05-27 19:39:34 +0000 | https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 | 12 | 10 | Cooper | None | None | None | None |
| 125 | 868622495443632128 | NaN | NaN | 2017-05-28 00:18:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/868622495443632128/photo/1 | 13 | 10 | None | None | None | None | None |
| 126 | 868552278524837888 | NaN | NaN | 2017-05-27 19:39:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi | NaN | NaN | NaN | https://www.gofundme.com/3ti3nps,https://twitter.com/dog_rates/status/868552278524837888/photo/1,https://twitter.com/dog_rates/status/868552278524837888/photo/1 | 12 | 10 | Cooper | None | None | None | None |
| 127 | 867900495410671616 | NaN | NaN | 2017-05-26 00:29:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867900495410671616/photo/1 | 12 | 10 | None | None | None | None | None |
| 128 | 867774946302451713 | NaN | NaN | 2017-05-25 16:10:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867774946302451713/photo/1,https://twitter.com/dog_rates/status/867774946302451713/photo/1 | 13 | 10 | Harold | None | None | None | None |
| 129 | 867421006826221569 | NaN | NaN | 2017-05-24 16:44:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867421006826221569/photo/1 | 12 | 10 | Shikha | None | None | None | puppo |
| 130 | 867072653475098625 | NaN | NaN | 2017-05-23 17:40:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @rachaeleasler: these @dog_rates hats are 13/10 bean approved https://t.co/nRCdq4g9gG | 8.650134e+17 | 7.874618e+17 | 2017-05-18 01:17:25 +0000 | https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1,https://twitter.com/rachaeleasler/status/865013420445368320/photo/1 | 13 | 10 | None | None | None | None | None |
| 131 | 867051520902168576 | NaN | NaN | 2017-05-23 16:16:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867051520902168576/photo/1 | 13 | 10 | None | None | None | None | None |
| 132 | 866816280283807744 | NaN | NaN | 2017-05-23 00:41:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7T… | 8.664507e+17 | 4.196984e+09 | 2017-05-22 00:28:40 +0000 | https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 | 13 | 10 | Jamesy | None | None | pupper | None |
| 133 | 866720684873056260 | NaN | NaN | 2017-05-22 18:21:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 | NaN | NaN | NaN | https://twitter.com/nbcnews/status/866458718883467265 | 13 | 10 | None | None | None | None | None |
| 134 | 866686824827068416 | NaN | NaN | 2017-05-22 16:06:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866686824827068416/photo/1,https://twitter.com/dog_rates/status/866686824827068416/photo/1 | 12 | 10 | Lili | None | None | None | None |
| 135 | 866450705531457537 | NaN | NaN | 2017-05-22 00:28:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866450705531457537/photo/1,https://twitter.com/dog_rates/status/866450705531457537/photo/1 | 13 | 10 | Jamesy | None | None | pupper | None |
| 136 | 866334964761202691 | NaN | NaN | 2017-05-21 16:48:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866334964761202691/photo/1,https://twitter.com/dog_rates/status/866334964761202691/photo/1 | 12 | 10 | Coco | None | None | None | None |
| 137 | 866094527597207552 | NaN | NaN | 2017-05-21 00:53:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK… | 8.378202e+17 | 4.196984e+09 | 2017-03-04 00:21:08 +0000 | https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 138 | 865718153858494464 | NaN | NaN | 2017-05-19 23:57:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865718153858494464/photo/1 | 13 | 10 | Boomer | None | None | None | None |
| 139 | 865359393868664832 | NaN | NaN | 2017-05-19 00:12:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865359393868664832/photo/1,https://twitter.com/dog_rates/status/865359393868664832/photo/1 | 13 | 10 | Sammy | None | None | None | None |
| 140 | 865006731092295680 | NaN | NaN | 2017-05-18 00:50:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865006731092295680/photo/1 | 13 | 10 | Nelly | None | None | None | None |
| 141 | 864873206498414592 | NaN | NaN | 2017-05-17 16:00:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864873206498414592/photo/1,https://twitter.com/dog_rates/status/864873206498414592/photo/1 | 14 | 10 | None | None | None | None | None |
| 142 | 864279568663928832 | NaN | NaN | 2017-05-16 00:41:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864279568663928832/photo/1,https://twitter.com/dog_rates/status/864279568663928832/photo/1 | 12 | 10 | Meatball | None | None | None | None |
| 143 | 864197398364647424 | NaN | NaN | 2017-05-15 19:14:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1,https://twitter.com/dog_rates/status/864197398364647424/photo/1 | 13 | 10 | Paisley | None | None | None | None |
| 144 | 863907417377173506 | NaN | NaN | 2017-05-15 00:02:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863907417377173506/photo/1,https://twitter.com/dog_rates/status/863907417377173506/photo/1 | 13 | 10 | Albus | None | None | None | None |
| 145 | 863553081350529029 | NaN | NaN | 2017-05-14 00:34:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863553081350529029/video/1 | 13 | 10 | Neptune | None | None | None | None |
| 146 | 863471782782697472 | NaN | NaN | 2017-05-13 19:11:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://… | 8.630625e+17 | 4.196984e+09 | 2017-05-12 16:05:02 +0000 | https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 | 13 | 10 | Quinn | None | None | None | None |
| 147 | 863432100342583297 | NaN | NaN | 2017-05-13 16:33:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863432100342583297/photo/1 | 12 | 10 | Belle | None | None | None | None |
| 148 | 863427515083354112 | 8.634256e+17 | 7.759620e+07 | 2017-05-13 16:15:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 149 | 863079547188785154 | 6.671522e+17 | 4.196984e+09 | 2017-05-12 17:12:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863079547188785154/photo/1 | 14 | 10 | None | None | None | None | None |
| 150 | 863062471531167744 | NaN | NaN | 2017-05-12 16:05:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt | NaN | NaN | NaN | https://www.gofundme.com/helpquinny,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1,https://twitter.com/dog_rates/status/863062471531167744/photo/1 | 13 | 10 | Quinn | None | None | None | None |
| 151 | 862831371563274240 | NaN | NaN | 2017-05-12 00:46:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862831371563274240/photo/1,https://twitter.com/dog_rates/status/862831371563274240/photo/1 | 13 | 10 | Zooey | None | None | None | None |
| 152 | 862722525377298433 | NaN | NaN | 2017-05-11 17:34:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862722525377298433/photo/1 | 11 | 10 | Dave | None | None | None | None |
| 153 | 862457590147678208 | NaN | NaN | 2017-05-11 00:01:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1,https://twitter.com/dog_rates/status/862457590147678208/photo/1 | 13 | 10 | Jersey | None | None | None | None |
| 154 | 862096992088072192 | NaN | NaN | 2017-05-10 00:08:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862096992088072192/photo/1,https://twitter.com/dog_rates/status/862096992088072192/photo/1 | 13 | 10 | None | None | None | None | None |
| 155 | 861769973181624320 | NaN | NaN | 2017-05-09 02:29:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 | 8.066291e+17 | 4.196984e+09 | 2016-12-07 22:38:52 +0000 | https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 | 13 | 10 | None | None | None | None | None |
| 156 | 861383897657036800 | NaN | NaN | 2017-05-08 00:54:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861383897657036800/photo/1 | 13 | 10 | Hobbes | None | None | None | None |
| 157 | 861288531465048066 | NaN | NaN | 2017-05-07 18:36:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861288531465048066/video/1 | 13 | 10 | None | None | None | None | None |
| 158 | 861005113778896900 | NaN | NaN | 2017-05-06 23:49:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861005113778896900/photo/1 | 12 | 10 | Burt | None | None | None | None |
| 159 | 860981674716409858 | NaN | NaN | 2017-05-06 22:16:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t… | 8.605638e+17 | 4.196984e+09 | 2017-05-05 18:36:06 +0000 | https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 | 13 | 10 | Lorenzo | None | None | None | None |
| 160 | 860924035999428608 | NaN | NaN | 2017-05-06 18:27:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @tallylott: h*ckin adorable promposal. 13/10 @dog_rates https://t.co/6n8hzNihJ9 | 8.609145e+17 | 3.638908e+08 | 2017-05-06 17:49:42 +0000 | https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1,https://twitter.com/tallylott/status/860914485250469888/photo/1 | 13 | 10 | None | None | None | None | None |
| 161 | 860563773140209665 | NaN | NaN | 2017-05-05 18:36:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt | NaN | NaN | NaN | https://www.gofundme.com/help-lorenzo-beat-cancer,https://twitter.com/dog_rates/status/860563773140209665/photo/1,https://twitter.com/dog_rates/status/860563773140209665/photo/1 | 13 | 10 | Lorenzo | None | None | None | None |
| 162 | 860524505164394496 | NaN | NaN | 2017-05-05 16:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860524505164394496/photo/1 | 13 | 10 | Carl | None | None | None | None |
| 163 | 860276583193509888 | NaN | NaN | 2017-05-04 23:34:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860276583193509888/photo/1 | 12 | 10 | Jordy | None | None | None | None |
| 164 | 860184849394610176 | NaN | NaN | 2017-05-04 17:30:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860184849394610176/photo/1 | 14 | 10 | None | None | None | None | None |
| 165 | 860177593139703809 | NaN | NaN | 2017-05-04 17:01:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.c… | 7.616730e+17 | 4.196984e+09 | 2016-08-05 21:19:27 +0000 | https://twitter.com/dog_rates/status/761672994376806400/video/1 | 10 | 10 | None | None | None | None | None |
| 166 | 859924526012018688 | NaN | NaN | 2017-05-04 00:15:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859924526012018688/photo/1 | 12 | 10 | Milky | None | None | None | None |
| 167 | 859851578198683649 | NaN | NaN | 2017-05-03 19:26:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1,https://twitter.com/dog_rates/status/859851578198683649/photo/1 | 13 | 10 | Trooper | None | None | None | None |
| 168 | 859607811541651456 | NaN | NaN | 2017-05-03 03:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859607811541651456/photo/1 | 13 | 10 | None | None | None | None | puppo |
| 169 | 859196978902773760 | NaN | NaN | 2017-05-02 00:04:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859196978902773760/video/1 | 12 | 10 | quite | None | None | None | None |
| 170 | 859074603037188101 | NaN | NaN | 2017-05-01 15:58:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859074603037188101/photo/1 | 13 | 10 | None | None | None | None | None |
| 171 | 858860390427611136 | NaN | NaN | 2017-05-01 01:47:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily… | 8.395493e+17 | 4.196984e+09 | 2017-03-08 18:52:12 +0000 | https://twitter.com/dog_rates/status/839549326359670784/photo/1 | 12 | 10 | Winston | None | None | None | None |
| 172 | 858843525470990336 | NaN | NaN | 2017-05-01 00:40:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858843525470990336/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 173 | 858471635011153920 | NaN | NaN | 2017-04-30 00:02:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858471635011153920/photo/1 | 13 | 10 | Sophie | None | None | None | None |
| 174 | 858107933456039936 | NaN | NaN | 2017-04-28 23:57:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858107933456039936/photo/1 | 12 | 10 | Wyatt | None | None | None | None |
| 175 | 857989990357356544 | NaN | NaN | 2017-04-28 16:08:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857989990357356544/photo/1 | 12 | 10 | Rosie | None | None | None | None |
| 176 | 857746408056729600 | NaN | NaN | 2017-04-28 00:00:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1,https://twitter.com/dog_rates/status/857746408056729600/photo/1 | 13 | 10 | Thor | None | None | None | None |
| 177 | 857393404942143489 | NaN | NaN | 2017-04-27 00:38:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV | NaN | NaN | NaN | https://www.gofundme.com/meeko-needs-heart-surgery,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1,https://twitter.com/dog_rates/status/857393404942143489/photo/1 | 13 | 10 | None | None | None | None | None |
| 178 | 857263160327368704 | NaN | NaN | 2017-04-26 16:00:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857263160327368704/photo/1 | 13 | 10 | Oscar | None | None | None | None |
| 179 | 857214891891077121 | 8.571567e+17 | 1.806710e+08 | 2017-04-26 12:48:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @Marc_IRL pixelated af 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 180 | 857062103051644929 | NaN | NaN | 2017-04-26 02:41:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @AaronChewning: First time wearing my @dog_rates hat on a flight and I get DOUBLE OPEN ROWS. Really makes you think. 13/10 https://t.co/… | 8.570611e+17 | 5.870972e+07 | 2017-04-26 02:37:47 +0000 | https://twitter.com/AaronChewning/status/857061112319234050/photo/1 | 13 | 10 | None | None | None | None | None |
| 181 | 857029823797047296 | NaN | NaN | 2017-04-26 00:33:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857029823797047296/photo/1,https://twitter.com/dog_rates/status/857029823797047296/photo/1 | 12 | 10 | Zeke | None | None | None | None |
| 182 | 856602993587888130 | NaN | NaN | 2017-04-24 20:17:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I… | 8.447048e+17 | 4.196984e+09 | 2017-03-23 00:18:10 +0000 | https://twitter.com/dog_rates/status/844704788403113984/photo/1 | 13 | 10 | Luna | None | None | None | None |
| 183 | 856543823941562368 | NaN | NaN | 2017-04-24 16:22:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856543823941562368/photo/1 | 12 | 10 | Callie | None | None | None | None |
| 184 | 856526610513747968 | 8.558181e+17 | 4.196984e+09 | 2017-04-24 15:13:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856526610513747968/photo/1 | 14 | 10 | None | None | None | None | None |
| 185 | 856330835276025856 | NaN | NaN | 2017-04-24 02:15:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @Jenna_Marbles: @dog_rates Thanks for rating my cermets 14/10 wow I'm so proud I watered them so much | 8.563302e+17 | 6.669901e+07 | 2017-04-24 02:13:14 +0000 | NaN | 14 | 10 | None | None | None | None | None |
| 186 | 856288084350160898 | 8.562860e+17 | 2.792810e+08 | 2017-04-23 23:26:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 187 | 856282028240666624 | NaN | NaN | 2017-04-23 23:01:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1,https://twitter.com/dog_rates/status/856282028240666624/photo/1 | 14 | 10 | Cermet | None | None | None | None |
| 188 | 855862651834028034 | 8.558616e+17 | 1.943518e+08 | 2017-04-22 19:15:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research | NaN | NaN | NaN | NaN | 420 | 10 | None | None | None | None | None |
| 189 | 855860136149123072 | 8.558585e+17 | 1.361572e+07 | 2017-04-22 19:05:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 | NaN | NaN | NaN | NaN | 666 | 10 | None | None | None | None | None |
| 190 | 855857698524602368 | NaN | NaN | 2017-04-22 18:55:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S | NaN | NaN | NaN | https://twitter.com/perfy/status/855857318168150016 | 13 | 10 | None | None | None | None | None |
| 191 | 855851453814013952 | NaN | NaN | 2017-04-22 18:31:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel | NaN | NaN | NaN | https://twitter.com/dog_rates/status/855851453814013952/photo/1 | 13 | 10 | None | doggo | None | None | puppo |
| 192 | 855818117272018944 | NaN | NaN | 2017-04-22 16:18:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth | NaN | NaN | NaN | https://twitter.com/markhalperin/status/855656431005061120 | 13 | 10 | None | None | None | None | None |
| 193 | 855459453768019968 | NaN | NaN | 2017-04-21 16:33:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/855459453768019968/photo/1,https://twitter.com/dog_rates/status/855459453768019968/photo/1 | 12 | 10 | quite | None | None | None | None |
| 194 | 855245323840757760 | NaN | NaN | 2017-04-21 02:22:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug… | 8.421635e+17 | 4.196984e+09 | 2017-03-16 00:00:07 +0000 | https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 | 12 | 10 | George | None | None | None | None |
| 195 | 855138241867124737 | NaN | NaN | 2017-04-20 19:16:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @frasercampbell_: oh my... what's that... beautiful scarf around your neck... 14/10 a h*ckin good dog in a h*ckin good game @GoodDogsGam… | 8.551225e+17 | 7.475543e+17 | 2017-04-20 18:14:33 +0000 | https://twitter.com/frasercampbell_/status/855122533267460096/photo/1 | 14 | 10 | None | None | None | None | None |
| 196 | 854732716440526848 | NaN | NaN | 2017-04-19 16:25:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1,https://twitter.com/dog_rates/status/854732716440526848/photo/1 | 12 | 10 | Marlee | None | None | None | None |
| 197 | 854482394044301312 | NaN | NaN | 2017-04-18 23:50:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854482394044301312/photo/1 | 13 | 10 | Arya | None | None | None | None |
| 198 | 854365224396361728 | NaN | NaN | 2017-04-18 16:05:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854365224396361728/photo/1,https://twitter.com/dog_rates/status/854365224396361728/photo/1 | 13 | 10 | Einstein | None | None | None | None |
| 199 | 854120357044912130 | NaN | NaN | 2017-04-17 23:52:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1,https://twitter.com/dog_rates/status/854120357044912130/photo/1 | 14 | 10 | None | None | None | pupper | None |
| 200 | 854010172552949760 | NaN | NaN | 2017-04-17 16:34:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854010172552949760/photo/1,https://twitter.com/dog_rates/status/854010172552949760/photo/1 | 11 | 10 | None | doggo | floofer | None | None |
| 201 | 853760880890318849 | NaN | NaN | 2017-04-17 00:03:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853760880890318849/photo/1 | 12 | 10 | Alice | None | None | None | None |
| 202 | 853639147608842240 | NaN | NaN | 2017-04-16 16:00:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853639147608842240/photo/1,https://twitter.com/dog_rates/status/853639147608842240/photo/1 | 13 | 10 | None | None | None | None | None |
| 203 | 853299958564483072 | NaN | NaN | 2017-04-15 17:32:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853299958564483072/photo/1,https://twitter.com/dog_rates/status/853299958564483072/photo/1 | 13 | 10 | Rumpole | None | None | None | None |
| 204 | 852936405516943360 | NaN | NaN | 2017-04-14 17:27:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t… | 8.316501e+17 | 4.196984e+09 | 2017-02-14 23:43:18 +0000 | http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 | 13 | 10 | None | None | None | None | None |
| 205 | 852912242202992640 | NaN | NaN | 2017-04-14 15:51:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U | NaN | NaN | NaN | https://www.gofundme.com/bennys-medical-bills,https://twitter.com/dog_rates/status/852912242202992640/photo/1,https://twitter.com/dog_rates/status/852912242202992640/photo/1 | 12 | 10 | Benny | None | None | None | None |
| 206 | 852672615818899456 | NaN | NaN | 2017-04-13 23:59:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852672615818899456/photo/1 | 12 | 10 | Aspen | None | None | None | None |
| 207 | 852553447878664193 | NaN | NaN | 2017-04-13 16:05:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852553447878664193/photo/1,https://twitter.com/dog_rates/status/852553447878664193/photo/1 | 13 | 10 | Jarod | None | None | None | None |
| 208 | 852311364735569921 | NaN | NaN | 2017-04-13 00:03:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852311364735569921/photo/1 | 13 | 10 | Wiggles | None | None | None | None |
| 209 | 852226086759018497 | NaN | NaN | 2017-04-12 18:25:07 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852226086759018497/video/1 | 14 | 10 | General | None | None | None | None |
| 210 | 852189679701164033 | NaN | NaN | 2017-04-12 16:00:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852189679701164033/photo/1 | 12 | 10 | Sailor | None | None | None | None |
| 211 | 851953902622658560 | NaN | NaN | 2017-04-12 00:23:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao | 8.293743e+17 | 4.196984e+09 | 2017-02-08 17:00:26 +0000 | https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 | 13 | 10 | Astrid | doggo | None | None | None |
| 212 | 851861385021730816 | NaN | NaN | 2017-04-11 18:15:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @eddie_coe98: Thanks @dog_rates completed my laptop. 10/10 would buy again https://t.co/bO0rThDlXI | 8.482894e+17 | 3.410211e+08 | 2017-04-01 21:42:03 +0000 | https://twitter.com/eddie_coe98/status/848289382176100353/photo/1,https://twitter.com/eddie_coe98/status/848289382176100353/photo/1 | 10 | 10 | None | None | None | None | None |
| 213 | 851591660324737024 | NaN | NaN | 2017-04-11 00:24:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851591660324737024/photo/1 | 11 | 10 | None | None | None | None | None |
| 214 | 851464819735769094 | NaN | NaN | 2017-04-10 16:00:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1,https://twitter.com/dog_rates/status/851464819735769094/photo/1 | 14 | 10 | Iggy | None | None | None | None |
| 215 | 851224888060895234 | NaN | NaN | 2017-04-10 00:06:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1,https://twitter.com/dog_rates/status/851224888060895234/photo/1 | 13 | 10 | Snoop | None | None | None | None |
| 216 | 850753642995093505 | NaN | NaN | 2017-04-08 16:54:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850753642995093505/photo/1,https://twitter.com/dog_rates/status/850753642995093505/photo/1 | 11 | 10 | Kyle | None | None | None | None |
| 217 | 850380195714523136 | NaN | NaN | 2017-04-07 16:10:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850380195714523136/video/1 | 13 | 10 | Leo | None | None | None | None |
| 218 | 850333567704068097 | 8.503288e+17 | 2.195506e+07 | 2017-04-07 13:04:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 219 | 850145622816686080 | NaN | NaN | 2017-04-07 00:38:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1,https://twitter.com/dog_rates/status/850145622816686080/photo/1 | 11 | 10 | Riley | None | None | None | None |
| 220 | 850019790995546112 | NaN | NaN | 2017-04-06 16:18:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1,https://twitter.com/dog_rates/status/850019790995546112/photo/1 | 12 | 10 | Boomer | None | None | pupper | None |
| 221 | 849776966551130114 | NaN | NaN | 2017-04-06 00:13:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849776966551130114/photo/1,https://twitter.com/dog_rates/status/849776966551130114/photo/1 | 12 | 10 | None | None | None | None | None |
| 222 | 849668094696017920 | NaN | NaN | 2017-04-05 17:00:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https… | 8.331247e+17 | 4.196984e+09 | 2017-02-19 01:23:00 +0000 | https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 | 12 | 10 | Gidget | None | None | pupper | None |
| 223 | 849412302885593088 | NaN | NaN | 2017-04-05 00:04:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1,https://twitter.com/dog_rates/status/849412302885593088/photo/1 | 12 | 10 | Noosh | None | None | None | None |
| 224 | 849336543269576704 | NaN | NaN | 2017-04-04 19:03:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849336543269576704/photo/1 | 11 | 10 | None | None | None | None | None |
| 225 | 849051919805034497 | NaN | NaN | 2017-04-04 00:12:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849051919805034497/photo/1 | 13 | 10 | Kevin | None | None | None | None |
| 226 | 848690551926992896 | NaN | NaN | 2017-04-03 00:16:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848690551926992896/photo/1 | 12 | 10 | None | None | None | None | None |
| 227 | 848324959059550208 | NaN | NaN | 2017-04-02 00:03:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848324959059550208/photo/1 | 12 | 10 | Odin | None | None | None | None |
| 228 | 848213670039564288 | 8.482121e+17 | 4.196984e+09 | 2017-04-01 16:41:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 229 | 848212111729840128 | NaN | NaN | 2017-04-01 16:35:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848212111729840128/photo/1 | 6 | 10 | Jerry | None | None | None | None |
| 230 | 847978865427394560 | NaN | NaN | 2017-04-01 01:08:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.c… | 8.323699e+17 | 4.196984e+09 | 2017-02-16 23:23:38 +0000 | https://twitter.com/dog_rates/status/832369877331693569/photo/1 | 11 | 10 | Charlie | None | None | None | None |
| 231 | 847971574464610304 | NaN | NaN | 2017-04-01 00:39:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @basic_vacek_: I love my new mug easy 13/10 @dog_rates https://t.co/0bYtoL7Wwt | 8.479710e+17 | 5.970642e+08 | 2017-04-01 00:36:55 +0000 | https://twitter.com/basic_vacek_/status/847971000004354048/photo/1,https://twitter.com/basic_vacek_/status/847971000004354048/photo/1 | 13 | 10 | None | None | None | None | None |
| 232 | 847962785489326080 | NaN | NaN | 2017-04-01 00:04:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847962785489326080/photo/1 | 10 | 10 | Georgie | None | None | None | None |
| 233 | 847842811428974592 | NaN | NaN | 2017-03-31 16:07:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 | NaN | NaN | NaN | https://www.gofundme.com/help-save-rontu,https://twitter.com/dog_rates/status/847842811428974592/photo/1 | 12 | 10 | Rontu | None | None | None | None |
| 234 | 847617282490613760 | 8.476062e+17 | 4.196984e+09 | 2017-03-31 01:11:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 235 | 847606175596138505 | NaN | NaN | 2017-03-31 00:27:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847606175596138505/photo/1 | 12 | 10 | Cannon | None | None | None | None |
| 236 | 847251039262605312 | NaN | NaN | 2017-03-30 00:56:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847251039262605312/photo/1,https://twitter.com/dog_rates/status/847251039262605312/photo/1 | 12 | 10 | Furzey | None | None | None | None |
| 237 | 847157206088847362 | NaN | NaN | 2017-03-29 18:43:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r | NaN | NaN | NaN | https://www.petfinder.com/petdetail/37334596,https://twitter.com/dog_rates/status/847157206088847362/photo/1,https://twitter.com/dog_rates/status/847157206088847362/photo/1 | 11 | 10 | Daisy | None | None | None | None |
| 238 | 847116187444137987 | NaN | NaN | 2017-03-29 16:00:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847116187444137987/photo/1 | 11 | 10 | None | None | None | None | None |
| 239 | 846874817362120707 | NaN | NaN | 2017-03-29 00:01:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846874817362120707/photo/1,https://twitter.com/dog_rates/status/846874817362120707/photo/1 | 13 | 10 | Tuck | None | None | None | None |
| 240 | 846514051647705089 | NaN | NaN | 2017-03-28 00:07:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1,https://twitter.com/dog_rates/status/846514051647705089/photo/1 | 13 | 10 | Barney | doggo | None | None | None |
| 241 | 846505985330044928 | NaN | NaN | 2017-03-27 23:35:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy | NaN | NaN | NaN | https://twitter.com/shomaristone/status/846484798663245829 | 11 | 10 | None | None | None | None | None |
| 242 | 846153765933735936 | NaN | NaN | 2017-03-27 00:15:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846153765933735936/photo/1,https://twitter.com/dog_rates/status/846153765933735936/photo/1 | 13 | 10 | Vixen | None | None | None | None |
| 243 | 846139713627017216 | NaN | NaN | 2017-03-26 23:20:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd | NaN | NaN | NaN | https://twitter.com/csncapitals/status/846088479142531073 | 13 | 10 | None | None | None | None | None |
| 244 | 846042936437604353 | NaN | NaN | 2017-03-26 16:55:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846042936437604353/photo/1 | 12 | 10 | Jarvis | None | None | None | None |
| 245 | 845812042753855489 | NaN | NaN | 2017-03-26 01:38:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1,https://twitter.com/dog_rates/status/845812042753855489/photo/1 | 13 | 10 | None | None | None | None | None |
| 246 | 845677943972139009 | NaN | NaN | 2017-03-25 16:45:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845677943972139009/photo/1 | 12 | 10 | None | None | None | None | None |
| 247 | 845459076796616705 | NaN | NaN | 2017-03-25 02:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://… | 7.562885e+17 | 4.196984e+09 | 2016-07-22 00:43:32 +0000 | https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 | 12 | 10 | None | None | None | None | None |
| 248 | 845397057150107648 | NaN | NaN | 2017-03-24 22:08:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o | NaN | NaN | NaN | https://www.gofundme.com/help-save-a-pup,https://twitter.com/dog_rates/status/845397057150107648/photo/1,https://twitter.com/dog_rates/status/845397057150107648/photo/1 | 13 | 10 | Mimosa | doggo | None | None | None |
| 249 | 845306882940190720 | NaN | NaN | 2017-03-24 16:10:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845306882940190720/photo/1 | 12 | 10 | Pickles | None | None | pupper | None |
| 250 | 845098359547420673 | NaN | NaN | 2017-03-24 02:22:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t… | 7.733088e+17 | 4.196984e+09 | 2016-09-06 23:56:05 +0000 | https://twitter.com/dog_rates/status/773308824254029826/photo/1 | 12 | 10 | Bungalo | None | None | None | None |
| 251 | 844979544864018432 | 7.590995e+17 | 4.196984e+09 | 2017-03-23 18:29:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1,https://twitter.com/dog_rates/status/844979544864018432/photo/1 | 13 | 10 | None | None | None | None | None |
| 252 | 844973813909606400 | NaN | NaN | 2017-03-23 18:07:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844973813909606400/photo/1 | 12 | 10 | Brady | None | None | None | None |
| 253 | 844704788403113984 | NaN | NaN | 2017-03-23 00:18:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844704788403113984/photo/1 | 13 | 10 | Luna | None | None | None | None |
| 254 | 844580511645339650 | NaN | NaN | 2017-03-22 16:04:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844580511645339650/photo/1 | 11 | 10 | Charlie | None | None | None | None |
| 255 | 844223788422217728 | NaN | NaN | 2017-03-21 16:26:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844223788422217728/photo/1 | 12 | 10 | Margo | None | None | None | None |
| 256 | 843981021012017153 | NaN | NaN | 2017-03-21 00:22:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd | NaN | NaN | NaN | https://twitter.com/brianstack153/status/796796054100471809 | 13 | 10 | None | None | None | None | None |
| 257 | 843856843873095681 | NaN | NaN | 2017-03-20 16:08:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843856843873095681/photo/1 | 12 | 10 | Sadie | None | None | None | None |
| 258 | 843604394117681152 | NaN | NaN | 2017-03-19 23:25:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843604394117681152/photo/1 | 11 | 10 | Hank | None | None | None | None |
| 259 | 843235543001513987 | NaN | NaN | 2017-03-18 22:59:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1,https://twitter.com/dog_rates/status/843235543001513987/photo/1 | 13 | 10 | Tycho | None | None | None | None |
| 260 | 842892208864923648 | NaN | NaN | 2017-03-18 00:15:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d | 8.071068e+17 | 4.196984e+09 | 2016-12-09 06:17:20 +0000 | https://twitter.com/dog_rates/status/807106840509214720/video/1,https://twitter.com/dog_rates/status/807106840509214720/video/1 | 13 | 10 | Stephan | None | None | None | None |
| 261 | 842846295480000512 | NaN | NaN | 2017-03-17 21:13:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842846295480000512/photo/1 | 13 | 10 | Charlie | None | None | None | None |
| 262 | 842765311967449089 | NaN | NaN | 2017-03-17 15:51:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Indie. She's not a fan of baths but she's definitely a fan of hide & seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l | NaN | NaN | NaN | https://www.gofundme.com/get-indie-home/,https://twitter.com/dog_rates/status/842765311967449089/photo/1,https://twitter.com/dog_rates/status/842765311967449089/photo/1 | 12 | 10 | Indie | None | None | None | None |
| 263 | 842535590457499648 | NaN | NaN | 2017-03-17 00:38:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842535590457499648/photo/1 | 13 | 10 | Winnie | None | None | None | None |
| 264 | 842163532590374912 | NaN | NaN | 2017-03-16 00:00:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842163532590374912/photo/1,https://twitter.com/dog_rates/status/842163532590374912/photo/1 | 12 | 10 | George | None | None | None | None |
| 265 | 842115215311396866 | NaN | NaN | 2017-03-15 20:48:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1,https://twitter.com/dog_rates/status/842115215311396866/photo/1 | 12 | 10 | Bentley | None | None | None | None |
| 266 | 841833993020538882 | NaN | NaN | 2017-03-15 02:10:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ | 8.174239e+17 | 4.196984e+09 | 2017-01-06 17:33:29 +0000 | https://twitter.com/dog_rates/status/817423860136083457/video/1,https://twitter.com/dog_rates/status/817423860136083457/video/1 | 13 | 10 | Ken | None | None | None | None |
| 267 | 841680585030541313 | NaN | NaN | 2017-03-14 16:01:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841680585030541313/photo/1 | 12 | 10 | Penny | None | None | None | None |
| 268 | 841439858740625411 | NaN | NaN | 2017-03-14 00:04:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1,https://twitter.com/dog_rates/status/841439858740625411/photo/1 | 14 | 10 | None | None | None | None | None |
| 269 | 841320156043304961 | NaN | NaN | 2017-03-13 16:08:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K | NaN | NaN | NaN | https://twitter.com/abc/status/841311395547250688 | 12 | 10 | None | None | None | None | None |
| 270 | 841314665196081154 | NaN | NaN | 2017-03-13 15:47:01 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841314665196081154/video/1 | 13 | 10 | Max | None | None | None | None |
| 271 | 841077006473256960 | NaN | NaN | 2017-03-13 00:02:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841077006473256960/photo/1 | 12 | 10 | Dawn | None | None | None | None |
| 272 | 840761248237133825 | NaN | NaN | 2017-03-12 03:07:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps:/… | 8.406323e+17 | 4.196984e+09 | 2017-03-11 18:35:42 +0000 | https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 | 12 | 10 | Maddie | None | None | None | None |
| 273 | 840728873075638272 | NaN | NaN | 2017-03-12 00:59:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://… | 6.671522e+17 | 4.196984e+09 | 2015-11-19 01:27:25 +0000 | https://twitter.com/dog_rates/status/667152164079423490/photo/1 | 12 | 10 | Pipsy | None | None | None | None |
| 274 | 840698636975636481 | 8.406983e+17 | 8.405479e+17 | 2017-03-11 22:59:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @0_kelvin_0 >10/10 is reserved for puppos sorry Kevin | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 275 | 840696689258311684 | NaN | NaN | 2017-03-11 22:51:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840696689258311684/photo/1 | 10 | 10 | None | None | None | None | None |
| 276 | 840632337062862849 | NaN | NaN | 2017-03-11 18:35:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o | NaN | NaN | NaN | https://www.gofundme.com/3hgsuu0,https://twitter.com/dog_rates/status/840632337062862849/photo/1 | 12 | 10 | Maddie | None | None | None | None |
| 277 | 840370681858686976 | NaN | NaN | 2017-03-11 01:15:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840370681858686976/photo/1 | 13 | 10 | None | None | None | None | None |
| 278 | 840268004936019968 | NaN | NaN | 2017-03-10 18:27:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1,https://twitter.com/dog_rates/status/840268004936019968/photo/1 | 12 | 10 | Monty | None | None | None | None |
| 279 | 839990271299457024 | NaN | NaN | 2017-03-10 00:04:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839990271299457024/photo/1,https://twitter.com/dog_rates/status/839990271299457024/photo/1 | 13 | 10 | Sojourner | None | None | None | None |
| 280 | 839549326359670784 | NaN | NaN | 2017-03-08 18:52:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839549326359670784/photo/1 | 12 | 10 | Winston | None | None | None | None |
| 281 | 839290600511926273 | NaN | NaN | 2017-03-08 01:44:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @alexmartindawg: THE DRINK IS DR. PUPPER 10/10 good pun @matt___nelson @GoodDogsGame https://t.co/act3duiqbL | 8.392899e+17 | 4.119842e+07 | 2017-03-08 01:41:24 +0000 | https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1,https://twitter.com/alexmartindawg/status/839289919298224128/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 282 | 839239871831150596 | NaN | NaN | 2017-03-07 22:22:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1,https://twitter.com/dog_rates/status/839239871831150596/photo/1 | 13 | 10 | Odie | None | None | None | None |
| 283 | 838952994649550848 | NaN | NaN | 2017-03-07 03:22:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP | NaN | NaN | NaN | https://twitter.com/ktla/status/838948714227998720 | 13 | 10 | None | None | None | None | None |
| 284 | 838921590096166913 | NaN | NaN | 2017-03-07 01:17:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838921590096166913/photo/1 | 13 | 10 | Arlo | None | None | None | None |
| 285 | 838916489579200512 | NaN | NaN | 2017-03-07 00:57:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @KibaDva: I collected all the good dogs!! 15/10 @dog_rates #GoodDogs https://t.co/6UCGFczlOI | 8.389060e+17 | 8.117408e+08 | 2017-03-07 00:15:46 +0000 | https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1,https://twitter.com/KibaDva/status/838905980628819968/photo/1 | 15 | 10 | None | None | None | None | None |
| 286 | 838831947270979586 | NaN | NaN | 2017-03-06 19:21:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https:… | 7.838400e+17 | 4.196984e+09 | 2016-10-06 01:23:05 +0000 | https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 | 13 | 10 | Riley | None | None | None | None |
| 287 | 838561493054533637 | NaN | NaN | 2017-03-06 01:26:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838561493054533637/photo/1 | 13 | 10 | Walter | None | None | None | None |
| 288 | 838476387338051585 | NaN | NaN | 2017-03-05 19:48:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1,https://twitter.com/dog_rates/status/838476387338051585/photo/1 | 13 | 10 | Stanley | None | None | None | None |
| 289 | 838201503651401729 | NaN | NaN | 2017-03-05 01:36:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EM… | 8.207497e+17 | 4.196984e+09 | 2017-01-15 21:49:15 +0000 | https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 | 13 | 10 | Sunny | None | None | None | None |
| 290 | 838150277551247360 | 8.381455e+17 | 2.195506e+07 | 2017-03-04 22:12:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @markhoppus 182/10 | NaN | NaN | NaN | NaN | 182 | 10 | None | None | None | None | None |
| 291 | 838085839343206401 | 8.380855e+17 | 2.894131e+09 | 2017-03-04 17:56:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 | NaN | NaN | NaN | NaN | 15 | 10 | None | None | None | None | None |
| 292 | 838083903487373313 | NaN | NaN | 2017-03-04 17:49:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838083903487373313/photo/1,https://twitter.com/dog_rates/status/838083903487373313/photo/1 | 13 | 10 | Daisy | None | None | None | None |
| 293 | 837820167694528512 | NaN | NaN | 2017-03-04 00:21:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837820167694528512/photo/1,https://twitter.com/dog_rates/status/837820167694528512/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 294 | 837482249356513284 | NaN | NaN | 2017-03-03 01:58:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837482249356513284/photo/1,https://twitter.com/dog_rates/status/837482249356513284/photo/1 | 13 | 10 | Waffles | None | None | None | None |
| 295 | 837471256429613056 | NaN | NaN | 2017-03-03 01:14:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837471256429613056/photo/1,https://twitter.com/dog_rates/status/837471256429613056/photo/1 | 12 | 10 | Vincent | None | None | None | None |
| 296 | 837366284874571778 | NaN | NaN | 2017-03-02 18:17:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837366284874571778/photo/1 | 13 | 10 | Lucy | None | None | None | None |
| 297 | 837110210464448512 | NaN | NaN | 2017-03-02 01:20:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837110210464448512/photo/1 | 13 | 10 | Clark | None | None | pupper | None |
| 298 | 837012587749474308 | NaN | NaN | 2017-03-01 18:52:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @KennyFromDaBlok: 14/10 h*ckin good hats. will wear daily @dog_rates https://t.co/rHLoU5gS30 | 8.370113e+17 | 7.266347e+08 | 2017-03-01 18:47:10 +0000 | https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1,https://twitter.com/KennyFromDaBlok/status/837011344666812416/photo/1 | 14 | 10 | None | None | None | None | None |
| 299 | 836989968035819520 | NaN | NaN | 2017-03-01 17:22:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836989968035819520/photo/1 | 12 | 10 | Mookie | None | None | None | None |
| 300 | 836753516572119041 | NaN | NaN | 2017-03-01 01:42:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836753516572119041/photo/1 | 12 | 10 | Meera | doggo | None | None | None |
| 301 | 836677758902222849 | NaN | NaN | 2017-02-28 20:41:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836677758902222849/photo/1,https://twitter.com/dog_rates/status/836677758902222849/photo/1 | 11 | 10 | Oliver | None | None | None | None |
| 302 | 836648853927522308 | NaN | NaN | 2017-02-28 18:46:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @SchafeBacon2016: @dog_rates Slightly disturbed by the outright profanity, but confident doggos were involved. 11/10, would tailgate aga… | 8.366481e+17 | 7.124572e+17 | 2017-02-28 18:43:57 +0000 | https://twitter.com/SchafeBacon2016/status/836648149003485187/photo/1 | 11 | 10 | None | None | None | None | None |
| 303 | 836397794269200385 | NaN | NaN | 2017-02-28 02:09:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https:/… | 8.178278e+17 | 4.196984e+09 | 2017-01-07 20:18:46 +0000 | https://twitter.com/dog_rates/status/817827839487737858/video/1 | 13 | 10 | Buddy | None | None | None | None |
| 304 | 836380477523124226 | NaN | NaN | 2017-02-28 01:00:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836380477523124226/photo/1 | 12 | 10 | Ava | None | None | pupper | None |
| 305 | 836260088725786625 | NaN | NaN | 2017-02-27 17:01:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836260088725786625/photo/1 | 13 | 10 | Lucy | None | None | None | None |
| 306 | 836001077879255040 | NaN | NaN | 2017-02-26 23:52:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1,https://twitter.com/dog_rates/status/836001077879255040/photo/1 | 13 | 10 | None | None | None | None | None |
| 307 | 835685285446955009 | NaN | NaN | 2017-02-26 02:57:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/… | 7.869631e+17 | 4.196984e+09 | 2016-10-14 16:13:10 +0000 | https://twitter.com/dog_rates/status/786963064373534720/photo/1 | 12 | 10 | Rory | None | None | None | None |
| 308 | 835574547218894849 | NaN | NaN | 2017-02-25 19:37:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835574547218894849/photo/1,https://twitter.com/dog_rates/status/835574547218894849/photo/1 | 11 | 10 | Eli | None | None | None | None |
| 309 | 835536468978302976 | NaN | NaN | 2017-02-25 17:06:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://… | 8.352641e+17 | 4.196984e+09 | 2017-02-24 23:04:14 +0000 | https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 | 12 | 10 | Lola | None | None | None | None |
| 310 | 835309094223372289 | NaN | NaN | 2017-02-25 02:03:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 | 7.530398e+17 | 4.196984e+09 | 2016-07-13 01:34:21 +0000 | https://vine.co/v/5W2Dg3XPX7a,https://vine.co/v/5W2Dg3XPX7a | 13 | 10 | None | None | None | None | None |
| 311 | 835297930240217089 | NaN | NaN | 2017-02-25 01:18:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835297930240217089/photo/1 | 12 | 10 | Ash | None | None | None | None |
| 312 | 835264098648616962 | NaN | NaN | 2017-02-24 23:04:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU | NaN | NaN | NaN | https://www.gofundme.com/lolas-life-saving-surgery-funds,https://twitter.com/dog_rates/status/835264098648616962/photo/1,https://twitter.com/dog_rates/status/835264098648616962/photo/1 | 12 | 10 | Lola | None | None | None | None |
| 313 | 835246439529840640 | 8.352460e+17 | 2.625958e+07 | 2017-02-24 21:54:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho | NaN | NaN | NaN | NaN | 960 | 0 | None | None | None | None | None |
| 314 | 835172783151792128 | NaN | NaN | 2017-02-24 17:01:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835172783151792128/photo/1,https://twitter.com/dog_rates/status/835172783151792128/photo/1 | 12 | 10 | None | None | None | None | None |
| 315 | 835152434251116546 | NaN | NaN | 2017-02-24 15:40:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1,https://twitter.com/dog_rates/status/835152434251116546/photo/1 | 0 | 10 | None | None | None | None | None |
| 316 | 834931633769889797 | NaN | NaN | 2017-02-24 01:03:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1,https://twitter.com/dog_rates/status/834931633769889797/photo/1 | 12 | 10 | Tucker | None | None | None | None |
| 317 | 834786237630337024 | NaN | NaN | 2017-02-23 15:25:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834786237630337024/photo/1 | 13 | 10 | Tobi | None | None | None | None |
| 318 | 834574053763584002 | NaN | NaN | 2017-02-23 01:22:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834574053763584002/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 319 | 834477809192075265 | NaN | NaN | 2017-02-22 18:59:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me… | 8.295020e+17 | 4.196984e+09 | 2017-02-09 01:27:41 +0000 | https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 | 12 | 10 | Leo | None | None | None | None |
| 320 | 834458053273591808 | NaN | NaN | 2017-02-22 17:41:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834458053273591808/photo/1 | 12 | 10 | Chester | None | None | None | None |
| 321 | 834209720923721728 | NaN | NaN | 2017-02-22 01:14:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834209720923721728/photo/1,https://twitter.com/dog_rates/status/834209720923721728/photo/1 | 12 | 10 | Wilson | None | None | None | None |
| 322 | 834167344700198914 | NaN | NaN | 2017-02-21 22:26:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834167344700198914/photo/1 | 11 | 10 | Sunshine | None | None | None | None |
| 323 | 834089966724603904 | NaN | NaN | 2017-02-21 17:18:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 | NaN | NaN | NaN | https://twitter.com/stevekopack/status/834086676934836224 | 10 | 10 | None | doggo | None | None | None |
| 324 | 834086379323871233 | NaN | NaN | 2017-02-21 17:04:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834086379323871233/photo/1 | 12 | 10 | Lipton | None | None | None | None |
| 325 | 833863086058651648 | NaN | NaN | 2017-02-21 02:17:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833863086058651648/photo/1,https://twitter.com/dog_rates/status/833863086058651648/photo/1 | 12 | 10 | Bentley | None | None | None | None |
| 326 | 833826103416520705 | NaN | NaN | 2017-02-20 23:50:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833826103416520705/photo/1,https://twitter.com/dog_rates/status/833826103416520705/photo/1 | 13 | 10 | Charlie | None | None | None | None |
| 327 | 833732339549220864 | NaN | NaN | 2017-02-20 17:37:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @rolltidered: This is Gabby. Now requests to be referred to as a guide dog, thanks to @dog_rates and @ShopWeRateDogs. 12/10 in my book.… | 8.324344e+17 | 4.466750e+07 | 2017-02-17 03:39:51 +0000 | https://twitter.com/rolltidered/status/832434358292209665/photo/1 | 12 | 10 | Gabby | None | None | None | None |
| 328 | 833722901757046785 | NaN | NaN | 2017-02-20 17:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833722901757046785/photo/1,https://twitter.com/dog_rates/status/833722901757046785/photo/1 | 13 | 10 | Bronte | None | None | None | None |
| 329 | 833479644947025920 | NaN | NaN | 2017-02-20 00:53:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1,https://twitter.com/dog_rates/status/833479644947025920/photo/1 | 13 | 10 | Poppy | None | None | None | None |
| 330 | 833124694597443584 | NaN | NaN | 2017-02-19 01:23:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1,https://twitter.com/dog_rates/status/833124694597443584/photo/1 | 12 | 10 | Gidget | None | None | pupper | None |
| 331 | 832998151111966721 | NaN | NaN | 2017-02-18 17:00:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832998151111966721/photo/1,https://twitter.com/dog_rates/status/832998151111966721/photo/1 | 13 | 10 | Rhino | doggo | None | None | None |
| 332 | 832769181346996225 | NaN | NaN | 2017-02-18 01:50:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @EmilieGambril: 12/10 h*cking excited about my new shirt! @dog_rates https://t.co/zFEfMTaHqU | 8.327664e+17 | 4.871977e+08 | 2017-02-18 01:39:12 +0000 | https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1,https://twitter.com/EmilieGambril/status/832766382198566913/photo/1 | 12 | 10 | None | None | None | None | None |
| 333 | 832757312314028032 | NaN | NaN | 2017-02-18 01:03:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832757312314028032/photo/1,https://twitter.com/dog_rates/status/832757312314028032/photo/1 | 13 | 10 | Willow | None | None | None | None |
| 334 | 832682457690300417 | NaN | NaN | 2017-02-17 20:05:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ | NaN | NaN | NaN | https://twitter.com/telegraph/status/832268302944579584 | 13 | 10 | None | None | None | None | None |
| 335 | 832645525019123713 | NaN | NaN | 2017-02-17 17:38:57 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ | 10 | 10 | not | None | None | None | None |
| 336 | 832636094638288896 | NaN | NaN | 2017-02-17 17:01:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832636094638288896/photo/1 | 12 | 10 | Orion | None | None | None | None |
| 337 | 832397543355072512 | NaN | NaN | 2017-02-17 01:13:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832397543355072512/photo/1,https://twitter.com/dog_rates/status/832397543355072512/photo/1 | 12 | 10 | Eevee | None | None | None | None |
| 338 | 832369877331693569 | NaN | NaN | 2017-02-16 23:23:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832369877331693569/photo/1 | 11 | 10 | Charlie | None | None | None | None |
| 339 | 832273440279240704 | NaN | NaN | 2017-02-16 17:00:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832273440279240704/video/1 | 14 | 10 | Smiley | doggo | None | None | None |
| 340 | 832215909146226688 | NaN | NaN | 2017-02-16 13:11:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wu… | 7.867091e+17 | 4.196984e+09 | 2016-10-13 23:23:56 +0000 | https://twitter.com/dog_rates/status/786709082849828864/photo/1 | 75 | 10 | Logan | None | None | None | None |
| 341 | 832215726631055365 | NaN | NaN | 2017-02-16 13:11:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 | 7.932865e+17 | 4.196984e+09 | 2016-11-01 03:00:09 +0000 | https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 | 13 | 10 | Moreton | None | None | None | None |
| 342 | 832088576586297345 | 8.320875e+17 | 3.058208e+07 | 2017-02-16 04:45:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @docmisterio account started on 11/15/15 | NaN | NaN | NaN | NaN | 11 | 15 | None | None | None | None | None |
| 343 | 832040443403784192 | NaN | NaN | 2017-02-16 01:34:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV | 7.699404e+17 | 4.196984e+09 | 2016-08-28 16:51:16 +0000 | https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 | 12 | 10 | Klein | None | None | None | None |
| 344 | 832032802820481025 | NaN | NaN | 2017-02-16 01:04:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M | NaN | NaN | NaN | https://www.petfinder.com/petdetail/34918210,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1,https://twitter.com/dog_rates/status/832032802820481025/photo/1 | 12 | 10 | Miguel | doggo | None | None | None |
| 345 | 831939777352105988 | NaN | NaN | 2017-02-15 18:54:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831939777352105988/photo/1 | 12 | 10 | Emanuel | doggo | None | None | None |
| 346 | 831926988323639298 | 8.319030e+17 | 2.068372e+07 | 2017-02-15 18:03:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @UNC can confirm 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 347 | 831911600680497154 | NaN | NaN | 2017-02-15 17:02:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1,https://twitter.com/dog_rates/status/831911600680497154/photo/1 | 14 | 10 | Kuyu | None | None | None | None |
| 348 | 831670449226514432 | NaN | NaN | 2017-02-15 01:04:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831670449226514432/photo/1 | 13 | 10 | Daisy | None | None | None | None |
| 349 | 831650051525054464 | NaN | NaN | 2017-02-14 23:43:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO | NaN | NaN | NaN | http://www.gofundme.com/bluethewhitehusky,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1,https://twitter.com/dog_rates/status/831650051525054464/photo/1 | 13 | 10 | None | None | None | None | None |
| 350 | 831552930092285952 | NaN | NaN | 2017-02-14 17:17:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831552930092285952/photo/1 | 13 | 10 | Dutch | None | None | None | None |
| 351 | 831322785565769729 | NaN | NaN | 2017-02-14 02:02:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831322785565769729/photo/1 | 12 | 10 | Pete | doggo | None | None | None |
| 352 | 831315979191906304 | NaN | NaN | 2017-02-14 01:35:49 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1,https://twitter.com/dog_rates/status/831315979191906304/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 353 | 831309418084069378 | NaN | NaN | 2017-02-14 01:09:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831309418084069378/photo/1 | 12 | 10 | Scooter | None | None | None | None |
| 354 | 831262627380748289 | NaN | NaN | 2017-02-13 22:03:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831262627380748289/photo/1 | 12 | 10 | Tucker | None | None | None | None |
| 355 | 830956169170665475 | NaN | NaN | 2017-02-13 01:46:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/830956169170665475/video/1 | 12 | 10 | Reggie | None | None | None | None |
| 356 | 830583320585068544 | NaN | NaN | 2017-02-12 01:04:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/830583320585068544/photo/1,https://twitter.com/dog_rates/status/830583320585068544/photo/1 | 13 | 10 | Lilly | None | None | None | None |
| 357 | 830173239259324417 | NaN | NaN | 2017-02-10 21:54:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionate… | 8.092201e+17 | 4.196984e+09 | 2016-12-15 02:14:29 +0000 | https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 | 12 | 10 | Kyro | None | None | None | None |
| 358 | 830097400375152640 | NaN | NaN | 2017-02-10 16:53:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW | NaN | NaN | NaN | https://www.gofundme.com/sick-baby-samson,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1,https://twitter.com/dog_rates/status/830097400375152640/photo/1 | 13 | 10 | Samson | None | None | None | None |
| 359 | 829878982036299777 | NaN | NaN | 2017-02-10 02:25:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR | 8.269587e+17 | 4.196984e+09 | 2017-02-02 01:01:21 +0000 | https://twitter.com/dog_rates/status/826958653328592898/photo/1,https://twitter.com/dog_rates/status/826958653328592898/photo/1 | 12 | 10 | Loki | doggo | None | None | None |
| 360 | 829861396166877184 | NaN | NaN | 2017-02-10 01:15:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829861396166877184/photo/1 | 12 | 10 | Mia | None | None | None | None |
| 361 | 829501995190984704 | NaN | NaN | 2017-02-09 01:27:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829501995190984704/photo/1,https://twitter.com/dog_rates/status/829501995190984704/photo/1 | 12 | 10 | Leo | None | None | None | None |
| 362 | 829449946868879360 | NaN | NaN | 2017-02-08 22:00:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829449946868879360/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 363 | 829374341691346946 | NaN | NaN | 2017-02-08 17:00:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829374341691346946/photo/1,https://twitter.com/dog_rates/status/829374341691346946/photo/1 | 13 | 10 | Astrid | doggo | None | None | None |
| 364 | 829141528400556032 | NaN | NaN | 2017-02-08 01:35:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829141528400556032/photo/1,https://twitter.com/dog_rates/status/829141528400556032/photo/1 | 12 | 10 | Malcolm | None | None | None | None |
| 365 | 829011960981237760 | NaN | NaN | 2017-02-07 17:00:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829011960981237760/photo/1,https://twitter.com/dog_rates/status/829011960981237760/photo/1 | 13 | 10 | Dexter | None | None | None | None |
| 366 | 828801551087042563 | NaN | NaN | 2017-02-07 03:04:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https… | 8.102541e+17 | 4.196984e+09 | 2016-12-17 22:43:27 +0000 | https://twitter.com/dog_rates/status/810254108431155201/photo/1 | 12 | 10 | Gus | None | None | None | None |
| 367 | 828770345708580865 | NaN | NaN | 2017-02-07 01:00:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828770345708580865/photo/1 | 13 | 10 | Alfie | None | None | None | None |
| 368 | 828708714936930305 | NaN | NaN | 2017-02-06 20:55:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828708714936930305/photo/1,https://twitter.com/dog_rates/status/828708714936930305/photo/1 | 10 | 10 | Fiona | None | None | None | None |
| 369 | 828650029636317184 | NaN | NaN | 2017-02-06 17:02:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1,https://twitter.com/dog_rates/status/828650029636317184/photo/1 | 14 | 10 | one | None | None | None | None |
| 370 | 828409743546925057 | NaN | NaN | 2017-02-06 01:07:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828409743546925057/photo/1 | 12 | 10 | Mutt | None | None | None | None |
| 371 | 828408677031882754 | NaN | NaN | 2017-02-06 01:03:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828408677031882754/photo/1 | 12 | 10 | Bear | None | None | None | None |
| 372 | 828381636999917570 | NaN | NaN | 2017-02-05 23:15:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828381636999917570/photo/1 | 14 | 10 | Doobert | doggo | None | None | None |
| 373 | 828376505180889089 | NaN | NaN | 2017-02-05 22:55:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828376505180889089/photo/1 | 13 | 10 | Beebop | None | None | None | None |
| 374 | 828372645993398273 | NaN | NaN | 2017-02-05 22:40:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828372645993398273/photo/1 | 12 | 10 | Alexander | None | None | None | None |
| 375 | 828361771580813312 | NaN | NaN | 2017-02-05 21:56:51 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Beebop and Doobert should start a band 12/10 would listen | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 376 | 828046555563323392 | NaN | NaN | 2017-02-05 01:04:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1,https://twitter.com/dog_rates/status/828046555563323392/photo/1 | 13 | 10 | Sailer | None | None | None | None |
| 377 | 828011680017821696 | NaN | NaN | 2017-02-04 22:45:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828011680017821696/photo/1,https://twitter.com/dog_rates/status/828011680017821696/photo/1 | 11 | 10 | Brutus | None | None | None | None |
| 378 | 827933404142436356 | NaN | NaN | 2017-02-04 17:34:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1,https://twitter.com/dog_rates/status/827933404142436356/photo/1 | 12 | 10 | Kona | None | None | pupper | None |
| 379 | 827653905312006145 | NaN | NaN | 2017-02-03 23:04:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827653905312006145/photo/1 | 12 | 10 | Boots | None | None | None | None |
| 380 | 827600520311402496 | NaN | NaN | 2017-02-03 19:31:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827600520311402496/photo/1 | 13 | 10 | Tucker | None | None | None | None |
| 381 | 827324948884643840 | NaN | NaN | 2017-02-03 01:16:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827324948884643840/photo/1 | 12 | 10 | Ralphie | None | None | None | None |
| 382 | 827228250799742977 | NaN | NaN | 2017-02-02 18:52:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://… | 6.946697e+17 | 4.196984e+09 | 2016-02-02 23:52:22 +0000 | https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 | 12 | 10 | Phil | None | None | None | None |
| 383 | 827199976799354881 | NaN | NaN | 2017-02-02 17:00:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1,https://twitter.com/dog_rates/status/827199976799354881/photo/1 | 13 | 10 | Charlie | None | None | None | None |
| 384 | 826958653328592898 | NaN | NaN | 2017-02-02 01:01:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826958653328592898/photo/1 | 12 | 10 | Loki | doggo | None | None | None |
| 385 | 826848821049180160 | NaN | NaN | 2017-02-01 17:44:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1,https://twitter.com/dog_rates/status/826848821049180160/photo/1 | 13 | 10 | Cupid | doggo | None | None | None |
| 386 | 826615380357632002 | NaN | NaN | 2017-02-01 02:17:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https:/… | 8.099208e+17 | 4.196984e+09 | 2016-12-17 00:38:52 +0000 | https://twitter.com/dog_rates/status/809920764300447744/photo/1 | 10 | 10 | None | None | None | None | None |
| 387 | 826598799820865537 | 8.265984e+17 | 4.196984e+09 | 2017-02-01 01:11:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I was going to do 007/10, but the joke wasn't worth the <10 rating | NaN | NaN | NaN | NaN | 7 | 10 | None | None | None | None | None |
| 388 | 826598365270007810 | NaN | NaN | 2017-02-01 01:09:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1,https://twitter.com/dog_rates/status/826598365270007810/photo/1 | 13 | 10 | Pawnd | None | None | None | None |
| 389 | 826476773533745153 | NaN | NaN | 2017-01-31 17:06:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826476773533745153/photo/1 | 12 | 10 | Pilot | doggo | None | None | None |
| 390 | 826240494070030336 | NaN | NaN | 2017-01-31 01:27:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826240494070030336/photo/1 | 11 | 10 | None | None | None | None | None |
| 391 | 826204788643753985 | NaN | NaN | 2017-01-30 23:05:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/01/kentucky-teen-helps-lost-yellow-labrador-and-gets-a-huge-surprise-001431969.html?sbdht=_pM1QUzk3wsenGU1giO7UnJ5NGGiKRW9AD5xs2MkaDpYY13JxbtKE4w2_,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1,https://twitter.com/dog_rates/status/826204788643753985/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 392 | 826115272272650244 | NaN | NaN | 2017-01-30 17:10:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826115272272650244/photo/1 | 13 | 10 | Ike | None | None | None | None |
| 393 | 825876512159186944 | NaN | NaN | 2017-01-30 01:21:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825876512159186944/photo/1 | 11 | 10 | Mo | None | None | None | None |
| 394 | 825829644528148480 | NaN | NaN | 2017-01-29 22:15:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825829644528148480/photo/1,https://twitter.com/dog_rates/status/825829644528148480/photo/1 | 12 | 10 | Toby | None | None | None | None |
| 395 | 825535076884762624 | NaN | NaN | 2017-01-29 02:44:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825535076884762624/photo/1 | 14 | 10 | None | None | None | None | puppo |
| 396 | 825147591692263424 | NaN | NaN | 2017-01-28 01:04:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825147591692263424/photo/1 | 13 | 10 | Sweet | None | None | None | None |
| 397 | 825120256414846976 | NaN | NaN | 2017-01-27 23:16:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps:/… | 8.250266e+17 | 4.196984e+09 | 2017-01-27 17:04:02 +0000 | https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 | 12 | 10 | Pablo | None | None | None | puppo |
| 398 | 825026590719483904 | NaN | NaN | 2017-01-27 17:04:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc | NaN | NaN | NaN | https://www.gofundme.com/my-puppys-double-cataract-surgery,https://twitter.com/dog_rates/status/825026590719483904/photo/1,https://twitter.com/dog_rates/status/825026590719483904/photo/1 | 12 | 10 | Pablo | None | None | None | puppo |
| 399 | 824796380199809024 | NaN | NaN | 2017-01-27 01:49:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E | 7.950767e+17 | 4.196984e+09 | 2016-11-06 01:33:58 +0000 | https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 | 11 | 10 | Bailey | None | None | None | None |
| 400 | 824775126675836928 | NaN | NaN | 2017-01-27 00:24:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824775126675836928/photo/1,https://twitter.com/dog_rates/status/824775126675836928/photo/1 | 12 | 10 | Scooter | None | None | None | None |
| 401 | 824663926340194305 | NaN | NaN | 2017-01-26 17:02:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824663926340194305/photo/1 | 13 | 10 | Wilson | None | None | None | None |
| 402 | 824325613288833024 | NaN | NaN | 2017-01-25 18:38:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824325613288833024/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 403 | 824297048279236611 | NaN | NaN | 2017-01-25 16:45:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824297048279236611/photo/1,https://twitter.com/dog_rates/status/824297048279236611/photo/1 | 11 | 10 | Nala | None | None | None | None |
| 404 | 824025158776213504 | NaN | NaN | 2017-01-24 22:44:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW | NaN | NaN | NaN | https://twitter.com/badlandsnps/status/823966201328046080 | 14 | 10 | None | None | None | None | None |
| 405 | 823939628516474880 | NaN | NaN | 2017-01-24 17:04:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823939628516474880/photo/1 | 12 | 10 | Cash | None | None | None | None |
| 406 | 823719002937630720 | NaN | NaN | 2017-01-24 02:28:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC | 7.840579e+17 | 4.196984e+09 | 2016-10-06 15:49:14 +0000 | https://vine.co/v/5gKxeUpuKEr,https://vine.co/v/5gKxeUpuKEr | 12 | 10 | Balto | None | None | None | None |
| 407 | 823699002998870016 | NaN | NaN | 2017-01-24 01:08:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823699002998870016/photo/1 | 12 | 10 | Winston | None | None | None | None |
| 408 | 823581115634085888 | NaN | NaN | 2017-01-23 17:20:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823581115634085888/photo/1 | 11 | 10 | Crawford | None | None | None | None |
| 409 | 823333489516937216 | 8.233264e+17 | 1.582854e+09 | 2017-01-23 00:56:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @HistoryInPics 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 410 | 823322678127919110 | NaN | NaN | 2017-01-23 00:13:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823322678127919110/photo/1,https://twitter.com/dog_rates/status/823322678127919110/photo/1 | 11 | 10 | Wyatt | None | None | None | None |
| 411 | 823269594223824897 | NaN | NaN | 2017-01-22 20:42:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 | 8.222448e+17 | 4.196984e+09 | 2017-01-20 00:50:15 +0000 | https://twitter.com/dog_rates/status/822244816520155136/photo/1,https://twitter.com/dog_rates/status/822244816520155136/photo/1 | 11 | 10 | None | None | None | None | None |
| 412 | 822975315408461824 | NaN | NaN | 2017-01-22 01:12:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822975315408461824/photo/1 | 12 | 10 | Albus | None | None | None | None |
| 413 | 822872901745569793 | NaN | NaN | 2017-01-21 18:26:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822872901745569793/photo/1 | 13 | 10 | None | None | None | None | puppo |
| 414 | 822859134160621569 | NaN | NaN | 2017-01-21 17:31:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822859134160621569/photo/1 | 12 | 10 | Hobbes | None | None | None | None |
| 415 | 822647212903690241 | NaN | NaN | 2017-01-21 03:29:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E | 8.224891e+17 | 4.196984e+09 | 2017-01-20 17:00:46 +0000 | https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 | 13 | 10 | Paisley | None | None | None | None |
| 416 | 822610361945911296 | NaN | NaN | 2017-01-21 01:02:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822610361945911296/photo/1 | 12 | 10 | None | None | None | None | None |
| 417 | 822489057087389700 | NaN | NaN | 2017-01-20 17:00:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1,https://twitter.com/dog_rates/status/822489057087389700/photo/1 | 13 | 10 | Paisley | None | None | None | None |
| 418 | 822462944365645825 | NaN | NaN | 2017-01-20 15:17:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1,https://twitter.com/dog_rates/status/822462944365645825/photo/1 | 14 | 10 | Gabe | None | None | pupper | None |
| 419 | 822244816520155136 | NaN | NaN | 2017-01-20 00:50:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822244816520155136/photo/1 | 11 | 10 | None | None | None | None | None |
| 420 | 822163064745328640 | NaN | NaN | 2017-01-19 19:25:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https:… | 7.862340e+17 | 4.196984e+09 | 2016-10-12 15:55:59 +0000 | https://twitter.com/dog_rates/status/786233965241827333/photo/1 | 11 | 10 | Mattie | None | None | None | None |
| 421 | 821886076407029760 | NaN | NaN | 2017-01-19 01:04:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821886076407029760/photo/1 | 13 | 10 | Jimison | None | None | None | None |
| 422 | 821813639212650496 | NaN | NaN | 2017-01-18 20:16:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG | 7.806013e+17 | 4.196984e+09 | 2016-09-27 02:53:48 +0000 | https://twitter.com/dog_rates/status/780601303617732608/photo/1,https://twitter.com/dog_rates/status/780601303617732608/photo/1 | 12 | 10 | Hercules | None | None | None | None |
| 423 | 821765923262631936 | NaN | NaN | 2017-01-18 17:07:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821765923262631936/photo/1 | 13 | 10 | Duchess | doggo | None | None | None |
| 424 | 821522889702862852 | NaN | NaN | 2017-01-18 01:01:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821522889702862852/photo/1 | 13 | 10 | Harlso | None | None | None | None |
| 425 | 821421320206483457 | NaN | NaN | 2017-01-17 18:17:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co… | 7.823059e+17 | 4.196984e+09 | 2016-10-01 19:47:08 +0000 | https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 | 12 | 10 | Sampson | doggo | None | None | None |
| 426 | 821407182352777218 | NaN | NaN | 2017-01-17 17:21:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821407182352777218/video/1 | 14 | 10 | Sundance | doggo | None | None | None |
| 427 | 821153421864615936 | 8.211526e+17 | 1.132119e+08 | 2017-01-17 00:33:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @imgur for a polar bear tho I'd say 13/10 is appropriate | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 428 | 821149554670182400 | NaN | NaN | 2017-01-17 00:18:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821149554670182400/video/1 | 12 | 10 | Luca | None | None | None | None |
| 429 | 821107785811234820 | NaN | NaN | 2017-01-16 21:32:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821107785811234820/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 430 | 821044531881721856 | NaN | NaN | 2017-01-16 17:20:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821044531881721856/photo/1 | 12 | 10 | Flash | None | None | None | None |
| 431 | 820837357901512704 | NaN | NaN | 2017-01-16 03:37:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5… | 8.192277e+17 | 4.196984e+09 | 2017-01-11 17:01:16 +0000 | https://twitter.com/dog_rates/status/819227688460238848/photo/1 | 12 | 10 | Finn | None | None | None | None |
| 432 | 820749716845686786 | NaN | NaN | 2017-01-15 21:49:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820749716845686786/photo/1,https://twitter.com/dog_rates/status/820749716845686786/photo/1 | 13 | 10 | Sunny | None | None | None | None |
| 433 | 820690176645140481 | NaN | NaN | 2017-01-15 17:52:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1 | 84 | 70 | None | None | None | None | None |
| 434 | 820494788566847489 | NaN | NaN | 2017-01-15 04:56:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t… | 8.203146e+17 | 4.196984e+09 | 2017-01-14 17:00:24 +0000 | https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 | 14 | 10 | None | None | None | None | None |
| 435 | 820446719150292993 | NaN | NaN | 2017-01-15 01:45:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg | 8.001414e+17 | 4.196984e+09 | 2016-11-20 00:59:15 +0000 | https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 | 13 | 10 | Peaches | None | None | None | None |
| 436 | 820314633777061888 | NaN | NaN | 2017-01-14 17:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE | NaN | NaN | NaN | https://www.loveyourmelon.com/pages/ourstory,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1,https://twitter.com/dog_rates/status/820314633777061888/photo/1 | 14 | 10 | None | None | None | None | None |
| 437 | 820078625395449857 | NaN | NaN | 2017-01-14 01:22:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1,https://twitter.com/dog_rates/status/820078625395449857/photo/1 | 12 | 10 | None | None | None | None | None |
| 438 | 820013781606658049 | NaN | NaN | 2017-01-13 21:04:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://… | 8.199522e+17 | 4.196984e+09 | 2017-01-13 17:00:21 +0000 | https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 | 13 | 10 | Oliver | None | None | None | puppo |
| 439 | 819952236453363712 | NaN | NaN | 2017-01-13 17:00:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb | NaN | NaN | NaN | https://www.gofundme.com/servicedogoliver,https://twitter.com/dog_rates/status/819952236453363712/photo/1 | 13 | 10 | Oliver | None | None | None | puppo |
| 440 | 819924195358416896 | NaN | NaN | 2017-01-13 15:08:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819924195358416896/video/1 | 11 | 10 | None | doggo | None | None | None |
| 441 | 819711362133872643 | NaN | NaN | 2017-01-13 01:03:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819711362133872643/photo/1,https://twitter.com/dog_rates/status/819711362133872643/photo/1 | 11 | 10 | Howie | None | None | None | None |
| 442 | 819588359383371776 | NaN | NaN | 2017-01-12 16:54:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819588359383371776/photo/1 | 13 | 10 | Jazzy | None | None | None | None |
| 443 | 819347104292290561 | NaN | NaN | 2017-01-12 00:55:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1,https://twitter.com/dog_rates/status/819347104292290561/photo/1 | 12 | 10 | Anna | None | None | None | None |
| 444 | 819238181065359361 | NaN | NaN | 2017-01-11 17:42:57 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ | 10 | 10 | None | None | None | pupper | None |
| 445 | 819227688460238848 | NaN | NaN | 2017-01-11 17:01:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819227688460238848/photo/1 | 12 | 10 | Finn | None | None | None | None |
| 446 | 819015337530290176 | NaN | NaN | 2017-01-11 02:57:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 | 8.190048e+17 | 4.196984e+09 | 2017-01-11 02:15:36 +0000 | https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 | 14 | 10 | Bo | doggo | None | None | None |
| 447 | 819015331746349057 | NaN | NaN | 2017-01-11 02:57:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb | 8.190064e+17 | 4.196984e+09 | 2017-01-11 02:21:57 +0000 | https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 | 14 | 10 | Sunny | doggo | None | None | None |
| 448 | 819006400881917954 | NaN | NaN | 2017-01-11 02:21:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1,https://twitter.com/dog_rates/status/819006400881917954/photo/1 | 14 | 10 | Sunny | doggo | None | None | None |
| 449 | 819004803107983360 | NaN | NaN | 2017-01-11 02:15:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1,https://twitter.com/dog_rates/status/819004803107983360/photo/1 | 14 | 10 | Bo | doggo | None | None | None |
| 450 | 818646164899774465 | NaN | NaN | 2017-01-10 02:30:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM | 8.083449e+17 | 4.196984e+09 | 2016-12-12 16:16:49 +0000 | https://vine.co/v/5QWd3LZqXxd,https://vine.co/v/5QWd3LZqXxd | 11 | 10 | Seamus | None | None | None | None |
| 451 | 818627210458333184 | NaN | NaN | 2017-01-10 01:15:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818627210458333184/photo/1 | 13 | 10 | Wafer | None | None | None | None |
| 452 | 818614493328580609 | NaN | NaN | 2017-01-10 00:24:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1,https://twitter.com/dog_rates/status/818614493328580609/photo/1 | 12 | 10 | Bear | None | None | None | None |
| 453 | 818588835076603904 | NaN | NaN | 2017-01-09 22:42:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb | 7.735476e+17 | 4.196984e+09 | 2016-09-07 15:44:53 +0000 | https://twitter.com/dog_rates/status/773547596996571136/photo/1,https://twitter.com/dog_rates/status/773547596996571136/photo/1 | 11 | 10 | Chelsea | None | None | pupper | None |
| 454 | 818536468981415936 | NaN | NaN | 2017-01-09 19:14:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818536468981415936/photo/1 | 11 | 10 | Tom | None | None | None | None |
| 455 | 818307523543449600 | NaN | NaN | 2017-01-09 04:04:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i… | 8.164506e+17 | 4.196984e+09 | 2017-01-04 01:05:59 +0000 | https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 | 13 | 10 | Moose | None | None | None | None |
| 456 | 818259473185828864 | NaN | NaN | 2017-01-09 00:53:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818259473185828864/photo/1 | 12 | 10 | Florence | None | None | None | None |
| 457 | 818145370475810820 | NaN | NaN | 2017-01-08 17:20:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1,https://twitter.com/dog_rates/status/818145370475810820/photo/1 | 11 | 10 | Autumn | None | None | None | None |
| 458 | 817908911860748288 | NaN | NaN | 2017-01-08 01:40:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 | NaN | NaN | NaN | https://twitter.com/micahgrimes/status/817902080979599361 | 12 | 10 | None | None | None | None | None |
| 459 | 817827839487737858 | NaN | NaN | 2017-01-07 20:18:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817827839487737858/video/1 | 13 | 10 | Buddy | None | None | None | None |
| 460 | 817777686764523521 | NaN | NaN | 2017-01-07 16:59:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817777686764523521/video/1 | 13 | 10 | Dido | doggo | None | pupper | None |
| 461 | 817536400337801217 | NaN | NaN | 2017-01-07 01:00:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1,https://twitter.com/dog_rates/status/817536400337801217/photo/1 | 12 | 10 | Eugene | None | None | None | None |
| 462 | 817502432452313088 | NaN | NaN | 2017-01-06 22:45:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https:/… | 6.924173e+17 | 4.196984e+09 | 2016-01-27 18:42:06 +0000 | https://twitter.com/dog_rates/status/692417313023332352/photo/1 | 7 | 10 | Herschel | None | None | pupper | None |
| 463 | 817423860136083457 | NaN | NaN | 2017-01-06 17:33:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817423860136083457/video/1 | 13 | 10 | Ken | None | None | None | None |
| 464 | 817415592588222464 | NaN | NaN | 2017-01-06 17:00:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 | NaN | NaN | NaN | https://www.gofundme.com/help-strudel-walk-again?rcid=ec2be8b6f825461f8ee0fd5dcdf43fea,https://twitter.com/dog_rates/status/817415592588222464/photo/1 | 11 | 10 | Strudel | None | None | None | None |
| 465 | 817181837579653120 | NaN | NaN | 2017-01-06 01:31:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k | 8.159661e+17 | 4.196984e+09 | 2017-01-02 17:00:46 +0000 | https://twitter.com/dog_rates/status/815966073409433600/video/1,https://twitter.com/dog_rates/status/815966073409433600/video/1 | 13 | 10 | None | None | None | pupper | None |
| 466 | 817171292965273600 | NaN | NaN | 2017-01-06 00:49:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817171292965273600/photo/1 | 13 | 10 | Tebow | None | None | None | None |
| 467 | 817120970343411712 | NaN | NaN | 2017-01-05 21:29:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817120970343411712/photo/1 | 13 | 10 | None | None | None | None | None |
| 468 | 817056546584727552 | NaN | NaN | 2017-01-05 17:13:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817056546584727552/photo/1 | 11 | 10 | Chloe | None | None | None | None |
| 469 | 816829038950027264 | NaN | NaN | 2017-01-05 02:09:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI | 7.909461e+17 | 4.196984e+09 | 2016-10-25 16:00:09 +0000 | https://twitter.com/dog_rates/status/790946055508652032/photo/1,https://twitter.com/dog_rates/status/790946055508652032/photo/1 | 12 | 10 | Betty | None | None | None | puppo |
| 470 | 816816676327063552 | NaN | NaN | 2017-01-05 01:20:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816816676327063552/photo/1 | 12 | 10 | Timber | None | None | None | None |
| 471 | 816697700272001025 | NaN | NaN | 2017-01-04 17:27:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816697700272001025/photo/1,https://twitter.com/dog_rates/status/816697700272001025/photo/1 | 12 | 10 | Binky | None | None | None | None |
| 472 | 816450570814898180 | NaN | NaN | 2017-01-04 01:05:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816450570814898180/photo/1,https://twitter.com/dog_rates/status/816450570814898180/photo/1 | 13 | 10 | Moose | None | None | None | None |
| 473 | 816336735214911488 | NaN | NaN | 2017-01-03 17:33:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816336735214911488/photo/1 | 11 | 10 | Dudley | None | None | None | None |
| 474 | 816091915477250048 | NaN | NaN | 2017-01-03 01:20:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1,https://twitter.com/dog_rates/status/816091915477250048/photo/1 | 12 | 10 | Comet | None | None | None | None |
| 475 | 816062466425819140 | NaN | NaN | 2017-01-02 23:23:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://… | 8.159907e+17 | 4.196984e+09 | 2017-01-02 18:38:42 +0000 | https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 | 11 | 10 | Jack | None | None | None | None |
| 476 | 816014286006976512 | NaN | NaN | 2017-01-02 20:12:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r | 7.320056e+17 | 4.196984e+09 | 2016-05-16 00:31:53 +0000 | https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 | 11 | 10 | Larry | None | None | None | None |
| 477 | 815990720817401858 | NaN | NaN | 2017-01-02 18:38:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p | NaN | NaN | NaN | https://www.gofundme.com/surgeryforjacktheminpin,https://twitter.com/dog_rates/status/815990720817401858/photo/1 | 11 | 10 | Jack | None | None | None | None |
| 478 | 815966073409433600 | NaN | NaN | 2017-01-02 17:00:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815966073409433600/video/1 | 13 | 10 | None | None | None | pupper | None |
| 479 | 815745968457060357 | NaN | NaN | 2017-01-02 02:26:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets h… | 7.914070e+17 | 4.196984e+09 | 2016-10-26 22:31:36 +0000 | https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 | 12 | 10 | Levi | None | None | None | None |
| 480 | 815736392542261248 | NaN | NaN | 2017-01-02 01:48:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1,https://twitter.com/dog_rates/status/815736392542261248/photo/1 | 11 | 10 | Akumi | None | None | None | None |
| 481 | 815639385530101762 | NaN | NaN | 2017-01-01 19:22:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815639385530101762/photo/1 | 12 | 10 | Titan | None | None | None | None |
| 482 | 815390420867969024 | NaN | NaN | 2017-01-01 02:53:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815390420867969024/photo/1 | 13 | 10 | None | None | None | None | None |
| 483 | 814986499976527872 | NaN | NaN | 2016-12-31 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814986499976527872/photo/1 | 11 | 10 | Cooper | None | None | pupper | None |
| 484 | 814638523311648768 | NaN | NaN | 2016-12-30 01:05:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1,https://twitter.com/dog_rates/status/814638523311648768/photo/1 | 12 | 10 | Olivia | None | None | None | None |
| 485 | 814578408554463233 | NaN | NaN | 2016-12-29 21:06:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https:/… | 6.981954e+17 | 4.196984e+09 | 2016-02-12 17:22:12 +0000 | https://twitter.com/dog_rates/status/698195409219559425/photo/1 | 9 | 10 | Beau | None | None | None | None |
| 486 | 814530161257443328 | NaN | NaN | 2016-12-29 17:54:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814530161257443328/photo/1 | 12 | 10 | Alf | None | None | None | None |
| 487 | 814153002265309185 | NaN | NaN | 2016-12-28 16:56:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814153002265309185/photo/1 | 12 | 10 | Oshie | None | None | None | None |
| 488 | 813944609378369540 | NaN | NaN | 2016-12-28 03:08:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 | 7.902771e+17 | 4.196984e+09 | 2016-10-23 19:42:02 +0000 | https://twitter.com/dog_rates/status/790277117346975746/photo/1,https://twitter.com/dog_rates/status/790277117346975746/photo/1 | 11 | 10 | Bruce | None | None | None | None |
| 489 | 813910438903693312 | NaN | NaN | 2016-12-28 00:52:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813910438903693312/photo/1 | 11 | 10 | Chubbs | doggo | None | None | None |
| 490 | 813812741911748608 | NaN | NaN | 2016-12-27 18:24:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1,https://twitter.com/dog_rates/status/813812741911748608/photo/1 | 14 | 10 | Gary | None | None | None | None |
| 491 | 813800681631023104 | NaN | NaN | 2016-12-27 17:36:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813800681631023104/photo/1 | 12 | 10 | Sky | None | None | None | None |
| 492 | 813217897535406080 | NaN | NaN | 2016-12-26 03:00:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1,https://twitter.com/dog_rates/status/813217897535406080/photo/1 | 13 | 10 | Atlas | None | None | None | None |
| 493 | 813202720496779264 | NaN | NaN | 2016-12-26 02:00:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813202720496779264/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 494 | 813187593374461952 | NaN | NaN | 2016-12-26 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813187593374461952/photo/1 | 13 | 10 | None | None | None | None | None |
| 495 | 813172488309972993 | NaN | NaN | 2016-12-26 00:00:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813172488309972993/photo/1 | 12 | 10 | Eleanor | None | None | None | None |
| 496 | 813157409116065792 | NaN | NaN | 2016-12-25 23:00:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1,https://twitter.com/dog_rates/status/813157409116065792/photo/1 | 12 | 10 | Layla | None | None | None | None |
| 497 | 813142292504645637 | NaN | NaN | 2016-12-25 22:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1,https://twitter.com/dog_rates/status/813142292504645637/photo/1 | 13 | 10 | None | None | None | None | None |
| 498 | 813130366689148928 | 8.131273e+17 | 4.196984e+09 | 2016-12-25 21:12:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 499 | 813127251579564032 | NaN | NaN | 2016-12-25 21:00:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813127251579564032/photo/1,https://twitter.com/dog_rates/status/813127251579564032/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 500 | 813112105746448384 | NaN | NaN | 2016-12-25 20:00:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813112105746448384/photo/1 | 12 | 10 | Toby | None | None | None | None |
| 501 | 813096984823349248 | NaN | NaN | 2016-12-25 19:00:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813096984823349248/photo/1 | 11 | 10 | Rocky | doggo | None | None | None |
| 502 | 813081950185472002 | NaN | NaN | 2016-12-25 18:00:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813081950185472002/photo/1,https://twitter.com/dog_rates/status/813081950185472002/photo/1 | 11 | 10 | Baron | None | None | None | None |
| 503 | 813066809284972545 | NaN | NaN | 2016-12-25 17:00:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813066809284972545/photo/1 | 12 | 10 | Tyr | None | None | None | None |
| 504 | 813051746834595840 | NaN | NaN | 2016-12-25 16:00:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813051746834595840/photo/1 | 13 | 10 | Bauer | None | None | None | None |
| 505 | 812781120811126785 | NaN | NaN | 2016-12-24 22:04:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1,https://twitter.com/dog_rates/status/812781120811126785/photo/1 | 10 | 10 | Swagger | None | None | None | None |
| 506 | 812747805718642688 | NaN | NaN | 2016-12-24 19:52:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.c… | 6.800555e+17 | 4.196984e+09 | 2015-12-24 16:00:30 +0000 | https://twitter.com/dog_rates/status/680055455951884288/photo/1 | 10 | 10 | Sammy | None | None | None | None |
| 507 | 812709060537683968 | NaN | NaN | 2016-12-24 17:18:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812709060537683968/photo/1 | 12 | 10 | Brandi | None | None | None | None |
| 508 | 812503143955202048 | NaN | NaN | 2016-12-24 03:40:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 | NaN | NaN | NaN | https://m.facebook.com/story.php?story_fbid=1888712391349242&id=1506300642923754&refsrc=http%3A%2F%2Ft.co%2FURVffYPPjY&_rdr,https://twitter.com/dog_rates/status/812503143955202048/photo/1,https://twitter.com/dog_rates/status/812503143955202048/photo/1 | 13 | 10 | None | None | None | None | None |
| 509 | 812466873996607488 | NaN | NaN | 2016-12-24 01:16:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812466873996607488/photo/1 | 12 | 10 | Mary | None | None | None | None |
| 510 | 812372279581671427 | NaN | NaN | 2016-12-23 19:00:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812372279581671427/photo/1,https://twitter.com/dog_rates/status/812372279581671427/photo/1 | 13 | 10 | Moe | None | None | None | None |
| 511 | 811985624773361665 | NaN | NaN | 2016-12-22 17:23:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811985624773361665/photo/1 | 11 | 10 | Ted | None | None | None | None |
| 512 | 811744202451197953 | NaN | NaN | 2016-12-22 01:24:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811744202451197953/photo/1 | 13 | 10 | Halo | None | None | None | None |
| 513 | 811647686436880384 | 8.116272e+17 | 4.196984e+09 | 2016-12-21 19:01:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 514 | 811627233043480576 | NaN | NaN | 2016-12-21 17:39:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811627233043480576/photo/1 | 10 | 10 | Augie | None | None | None | None |
| 515 | 811386762094317568 | NaN | NaN | 2016-12-21 01:44:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811386762094317568/photo/1 | 11 | 10 | Craig | None | None | pupper | None |
| 516 | 810984652412424192 | NaN | NaN | 2016-12-19 23:06:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx | NaN | NaN | NaN | https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1 | 24 | 7 | Sam | None | None | None | None |
| 517 | 810896069567610880 | NaN | NaN | 2016-12-19 17:14:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1,https://twitter.com/dog_rates/status/810896069567610880/photo/1 | 11 | 10 | Hunter | None | None | None | None |
| 518 | 810657578271330305 | NaN | NaN | 2016-12-19 01:26:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810657578271330305/photo/1 | 11 | 10 | Pavlov | None | None | None | None |
| 519 | 810284430598270976 | NaN | NaN | 2016-12-18 00:43:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810284430598270976/photo/1,https://twitter.com/dog_rates/status/810284430598270976/photo/1 | 13 | 10 | Phil | None | None | None | None |
| 520 | 810254108431155201 | NaN | NaN | 2016-12-17 22:43:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810254108431155201/photo/1 | 12 | 10 | Gus | None | None | None | None |
| 521 | 809920764300447744 | NaN | NaN | 2016-12-17 00:38:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809920764300447744/photo/1 | 10 | 10 | None | None | None | None | None |
| 522 | 809808892968534016 | NaN | NaN | 2016-12-16 17:14:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR | 7.939622e+17 | 4.196984e+09 | 2016-11-02 23:45:19 +0000 | https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 | 12 | 10 | Maximus | None | None | None | None |
| 523 | 809448704142938112 | NaN | NaN | 2016-12-15 17:23:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809448704142938112/photo/1 | 12 | 10 | None | None | None | None | None |
| 524 | 809220051211603969 | NaN | NaN | 2016-12-15 02:14:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809220051211603969/photo/1,https://twitter.com/dog_rates/status/809220051211603969/photo/1 | 12 | 10 | Kyro | None | None | None | None |
| 525 | 809084759137812480 | NaN | NaN | 2016-12-14 17:16:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809084759137812480/photo/1 | 11 | 10 | Wallace | None | None | None | None |
| 526 | 808838249661788160 | NaN | NaN | 2016-12-14 00:57:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808838249661788160/photo/1 | 13 | 10 | Ito | None | None | None | None |
| 527 | 808733504066486276 | NaN | NaN | 2016-12-13 18:01:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808733504066486276/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 528 | 808501579447930884 | NaN | NaN | 2016-12-13 02:39:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808501579447930884/photo/1,https://twitter.com/dog_rates/status/808501579447930884/photo/1 | 12 | 10 | Koda | None | None | None | None |
| 529 | 808344865868283904 | NaN | NaN | 2016-12-12 16:16:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM | NaN | NaN | NaN | https://vine.co/v/5QWd3LZqXxd | 11 | 10 | Seamus | None | None | None | None |
| 530 | 808134635716833280 | NaN | NaN | 2016-12-12 02:21:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey | 8.011679e+17 | 4.196984e+09 | 2016-11-22 20:58:07 +0000 | https://twitter.com/dog_rates/status/801167903437357056/photo/1,https://twitter.com/dog_rates/status/801167903437357056/photo/1 | 13 | 10 | Milo | None | None | None | None |
| 531 | 808106460588765185 | NaN | NaN | 2016-12-12 00:29:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808106460588765185/photo/1 | 12 | 10 | None | doggo | None | pupper | None |
| 532 | 808001312164028416 | NaN | NaN | 2016-12-11 17:31:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808001312164028416/photo/1,https://twitter.com/dog_rates/status/808001312164028416/photo/1 | 12 | 10 | Cooper | None | None | None | None |
| 533 | 807621403335917568 | NaN | NaN | 2016-12-10 16:22:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1,https://twitter.com/dog_rates/status/807621403335917568/photo/1 | 14 | 10 | Ollie | None | None | pupper | None |
| 534 | 807106840509214720 | NaN | NaN | 2016-12-09 06:17:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807106840509214720/video/1 | 13 | 10 | Stephan | None | None | None | None |
| 535 | 807059379405148160 | NaN | NaN | 2016-12-09 03:08:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX | 7.829691e+17 | 4.196984e+09 | 2016-10-03 15:42:44 +0000 | https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 | 12 | 10 | Cali | None | None | None | None |
| 536 | 807010152071229440 | NaN | NaN | 2016-12-08 23:53:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807010152071229440/photo/1 | 12 | 10 | Lennon | None | None | None | None |
| 537 | 806629075125202948 | NaN | NaN | 2016-12-07 22:38:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806629075125202948/photo/1,https://twitter.com/dog_rates/status/806629075125202948/photo/1 | 13 | 10 | None | None | None | None | None |
| 538 | 806620845233815552 | NaN | NaN | 2016-12-07 22:06:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.c… | 7.815247e+17 | 4.196984e+09 | 2016-09-29 16:03:01 +0000 | https://twitter.com/dog_rates/status/781524693396357120/photo/1 | 12 | 10 | None | None | None | None | None |
| 539 | 806576416489959424 | NaN | NaN | 2016-12-07 19:09:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G | NaN | NaN | NaN | https://twitter.com/deadspin/status/806570933175652352 | 13 | 10 | None | None | None | None | None |
| 540 | 806542213899489280 | NaN | NaN | 2016-12-07 16:53:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806542213899489280/photo/1 | 11 | 10 | Waffles | None | None | None | None |
| 541 | 806242860592926720 | NaN | NaN | 2016-12-06 21:04:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu | 7.833346e+17 | 4.196984e+09 | 2016-10-04 15:55:06 +0000 | https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 | 12 | 10 | Dave | None | None | None | None |
| 542 | 806219024703037440 | NaN | NaN | 2016-12-06 19:29:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806219024703037440/photo/1 | 11 | 10 | incredibly | None | None | None | None |
| 543 | 805958939288408065 | NaN | NaN | 2016-12-06 02:15:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 | 7.827226e+17 | 4.196984e+09 | 2016-10-02 23:23:04 +0000 | https://twitter.com/dog_rates/status/782722598790725632/photo/1,https://twitter.com/dog_rates/status/782722598790725632/photo/1 | 10 | 10 | Penny | None | None | None | None |
| 544 | 805932879469572096 | NaN | NaN | 2016-12-06 00:32:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805932879469572096/photo/1 | 12 | 10 | Major | None | None | None | None |
| 545 | 805826884734976000 | NaN | NaN | 2016-12-05 17:31:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805826884734976000/video/1 | 12 | 10 | Duke | None | None | None | None |
| 546 | 805823200554876929 | NaN | NaN | 2016-12-05 17:16:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ | 7.841832e+17 | 4.196984e+09 | 2016-10-07 00:06:50 +0000 | https://vine.co/v/5ghHLBMMdlV,https://vine.co/v/5ghHLBMMdlV | 12 | 10 | Reginald | None | None | None | puppo |
| 547 | 805520635690676224 | NaN | NaN | 2016-12-04 21:14:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1,https://twitter.com/dog_rates/status/805520635690676224/photo/1 | 13 | 10 | Zeke | None | None | None | None |
| 548 | 805487436403003392 | NaN | NaN | 2016-12-04 19:02:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1,https://twitter.com/dog_rates/status/805487436403003392/photo/1 | 12 | 10 | Sansa | None | None | None | None |
| 549 | 805207613751304193 | NaN | NaN | 2016-12-04 00:30:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805207613751304193/photo/1 | 12 | 10 | Shooter | None | None | None | None |
| 550 | 804738756058218496 | NaN | NaN | 2016-12-02 17:27:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/804738756058218496/photo/1 | 12 | 10 | Django | None | None | None | None |
| 551 | 804475857670639616 | NaN | NaN | 2016-12-02 00:02:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd | NaN | NaN | NaN | https://twitter.com/bvuepd/status/804417859124273152 | 13 | 10 | None | None | None | None | None |
| 552 | 804413760345620481 | NaN | NaN | 2016-12-01 19:56:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ | 7.848260e+17 | 4.196984e+09 | 2016-10-08 18:41:19 +0000 | https://twitter.com/dog_rates/status/784826020293709826/photo/1,https://twitter.com/dog_rates/status/784826020293709826/photo/1 | 13 | 10 | Rusty | None | None | None | None |
| 553 | 804026241225523202 | NaN | NaN | 2016-11-30 18:16:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1,https://twitter.com/dog_rates/status/804026241225523202/photo/1 | 13 | 10 | Bo | None | None | None | None |
| 554 | 803773340896923648 | NaN | NaN | 2016-11-30 01:31:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1,https://twitter.com/dog_rates/status/803773340896923648/photo/1 | 12 | 10 | Diogi | None | None | None | puppo |
| 555 | 803692223237865472 | NaN | NaN | 2016-11-29 20:08:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k | 6.914169e+17 | 4.196984e+09 | 2016-01-25 00:26:41 +0000 | https://twitter.com/dog_rates/status/691416866452082688/photo/1,https://twitter.com/dog_rates/status/691416866452082688/photo/1 | 13 | 10 | None | None | None | None | None |
| 556 | 803638050916102144 | NaN | NaN | 2016-11-29 16:33:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803638050916102144/video/1 | 13 | 10 | None | None | None | pupper | None |
| 557 | 803380650405482500 | NaN | NaN | 2016-11-28 23:30:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803380650405482500/photo/1 | 12 | 10 | Sonny | None | None | None | None |
| 558 | 803321560782307329 | NaN | NaN | 2016-11-28 19:35:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb… | 7.677549e+17 | 4.196984e+09 | 2016-08-22 16:06:54 +0000 | https://twitter.com/dog_rates/status/767754930266464257/photo/1 | 11 | 10 | Philbert | None | None | None | None |
| 559 | 803276597545603072 | NaN | NaN | 2016-11-28 16:37:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803276597545603072/photo/1 | 11 | 10 | Winston | None | None | None | None |
| 560 | 802952499103731712 | NaN | NaN | 2016-11-27 19:09:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802952499103731712/photo/1 | 12 | 10 | Marley | None | None | None | None |
| 561 | 802624713319034886 | NaN | NaN | 2016-11-26 21:26:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ | 7.776842e+17 | 4.196984e+09 | 2016-09-19 01:42:24 +0000 | https://twitter.com/dog_rates/status/777684233540206592/photo/1,https://twitter.com/dog_rates/status/777684233540206592/photo/1 | 12 | 10 | None | None | None | None | None |
| 562 | 802600418706604034 | NaN | NaN | 2016-11-26 19:50:26 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O | NaN | NaN | NaN | https://vine.co/v/5FwUWjYaW0Y | 11 | 10 | Bailey | None | None | None | None |
| 563 | 802572683846291456 | NaN | NaN | 2016-11-26 18:00:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802572683846291456/photo/1 | 12 | 10 | Winnie | None | None | None | None |
| 564 | 802323869084381190 | NaN | NaN | 2016-11-26 01:31:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1,https://twitter.com/dog_rates/status/802323869084381190/photo/1 | 13 | 10 | Severus | None | None | None | None |
| 565 | 802265048156610565 | 7.331095e+17 | 4.196984e+09 | 2016-11-25 21:37:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802265048156610565/photo/1 | 11 | 10 | None | doggo | None | pupper | None |
| 566 | 802247111496568832 | NaN | NaN | 2016-11-25 20:26:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 | 7.790561e+17 | 4.196984e+09 | 2016-09-22 20:33:42 +0000 | https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 | 13 | 10 | None | None | None | None | None |
| 567 | 802239329049477120 | NaN | NaN | 2016-11-25 19:55:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802239329049477120/photo/1,https://twitter.com/dog_rates/status/802239329049477120/photo/1 | 12 | 10 | Loki | None | None | None | puppo |
| 568 | 802185808107208704 | NaN | NaN | 2016-11-25 16:22:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @ChinoChinako: They're good products, Brent\n\nMug holds drinks; hoodie is comfy af. 13/10 \n\nPuppy Aika h*cking agrees. @dog_rates https:/… | 8.000650e+17 | 2.488557e+07 | 2016-11-19 19:55:41 +0000 | https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1,https://twitter.com/ChinoChinako/status/800065028116385792/photo/1 | 13 | 10 | None | None | None | None | None |
| 569 | 801958328846974976 | NaN | NaN | 2016-11-25 01:18:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801958328846974976/photo/1 | 12 | 10 | Ronnie | None | None | None | None |
| 570 | 801854953262350336 | 8.018543e+17 | 1.185634e+07 | 2016-11-24 18:28:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 571 | 801538201127157760 | NaN | NaN | 2016-11-23 21:29:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801538201127157760/photo/1 | 12 | 10 | Wallace | None | None | None | None |
| 572 | 801285448605831168 | NaN | NaN | 2016-11-23 04:45:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | oh h*ck 10/10 https://t.co/bC69RrW559 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801285448605831168/photo/1 | 10 | 10 | None | None | None | None | None |
| 573 | 801167903437357056 | NaN | NaN | 2016-11-22 20:58:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801167903437357056/photo/1 | 13 | 10 | Milo | None | None | None | None |
| 574 | 801127390143516673 | NaN | NaN | 2016-11-22 18:17:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://… | 7.757333e+17 | 4.196984e+09 | 2016-09-13 16:30:07 +0000 | https://twitter.com/dog_rates/status/775733305207554048/photo/1 | 11 | 10 | Anakin | doggo | None | None | None |
| 575 | 801115127852503040 | NaN | NaN | 2016-11-22 17:28:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801115127852503040/photo/1,https://twitter.com/dog_rates/status/801115127852503040/photo/1 | 12 | 10 | Bones | doggo | None | pupper | None |
| 576 | 800859414831898624 | 8.008580e+17 | 2.918590e+08 | 2016-11-22 00:32:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets | NaN | NaN | NaN | NaN | 11 | 10 | None | doggo | None | None | None |
| 577 | 800855607700029440 | NaN | NaN | 2016-11-22 00:17:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @Lin_Manuel: 11/10 would recommend. https://t.co/pnUF69K4xk | 8.008540e+17 | 7.992370e+07 | 2016-11-22 00:10:52 +0000 | https://twitter.com/littlewiewel/status/800852955880628224,https://twitter.com/littlewiewel/status/800852955880628224 | 11 | 10 | None | None | None | None | None |
| 578 | 800751577355128832 | NaN | NaN | 2016-11-21 17:23:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1,https://twitter.com/dog_rates/status/800751577355128832/photo/1 | 12 | 10 | Mauve | None | None | None | None |
| 579 | 800513324630806528 | NaN | NaN | 2016-11-21 01:37:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800513324630806528/photo/1 | 11 | 10 | Chef | None | None | None | None |
| 580 | 800459316964663297 | NaN | NaN | 2016-11-20 22:02:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800459316964663297/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 581 | 800443802682937345 | NaN | NaN | 2016-11-20 21:00:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG | 7.761133e+17 | 4.196984e+09 | 2016-09-14 17:40:06 +0000 | https://twitter.com/dog_rates/status/776113305656188928/photo/1,https://twitter.com/dog_rates/status/776113305656188928/photo/1 | 11 | 10 | Sampson | None | None | pupper | None |
| 582 | 800388270626521089 | NaN | NaN | 2016-11-20 17:20:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1,https://twitter.com/dog_rates/status/800388270626521089/photo/1 | 12 | 10 | Doc | None | floofer | None | None |
| 583 | 800188575492947969 | NaN | NaN | 2016-11-20 04:06:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://… | 6.816941e+17 | 4.196984e+09 | 2015-12-29 04:31:49 +0000 | https://twitter.com/dog_rates/status/681694085539872773/photo/1 | 11 | 10 | Bo | None | None | pupper | None |
| 584 | 800141422401830912 | NaN | NaN | 2016-11-20 00:59:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1,https://twitter.com/dog_rates/status/800141422401830912/photo/1 | 13 | 10 | Peaches | None | None | None | None |
| 585 | 800018252395122689 | NaN | NaN | 2016-11-19 16:49:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800018252395122689/video/1 | 11 | 10 | None | doggo | None | None | None |
| 586 | 799774291445383169 | NaN | NaN | 2016-11-19 00:40:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT | 7.750851e+17 | 4.196984e+09 | 2016-09-11 21:34:30 +0000 | https://twitter.com/dog_rates/status/775085132600442880/photo/1,https://twitter.com/dog_rates/status/775085132600442880/photo/1 | 13 | 10 | Tucker | None | None | None | None |
| 587 | 799757965289017345 | NaN | NaN | 2016-11-18 23:35:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1,https://twitter.com/dog_rates/status/799757965289017345/photo/1 | 13 | 10 | Sobe | doggo | None | None | None |
| 588 | 799422933579902976 | NaN | NaN | 2016-11-18 01:24:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799422933579902976/photo/1 | 12 | 10 | Longfellow | None | None | None | None |
| 589 | 799308762079035393 | NaN | NaN | 2016-11-17 17:50:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpf… | 7.743144e+17 | 4.196984e+09 | 2016-09-09 18:31:54 +0000 | https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 | 14 | 10 | None | None | None | None | None |
| 590 | 799297110730567681 | NaN | NaN | 2016-11-17 17:04:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799297110730567681/photo/1,https://twitter.com/dog_rates/status/799297110730567681/photo/1 | 11 | 10 | Jeffrey | None | None | None | None |
| 591 | 799063482566066176 | NaN | NaN | 2016-11-17 01:35:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1,https://twitter.com/dog_rates/status/799063482566066176/photo/1 | 11 | 10 | Mister | None | None | None | None |
| 592 | 798933969379225600 | NaN | NaN | 2016-11-16 17:01:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798933969379225600/photo/1,https://twitter.com/dog_rates/status/798933969379225600/photo/1 | 12 | 10 | Iroh | None | None | None | None |
| 593 | 798925684722855936 | NaN | NaN | 2016-11-16 16:28:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798925684722855936/photo/1 | 11 | 10 | Shadow | None | None | None | None |
| 594 | 798705661114773508 | NaN | NaN | 2016-11-16 01:54:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://… | 7.406770e+17 | 4.196984e+09 | 2016-06-08 22:48:46 +0000 | https://twitter.com/dog_rates/status/740676976021798912/photo/1 | 11 | 10 | Baloo | None | None | pupper | None |
| 595 | 798701998996647937 | NaN | NaN | 2016-11-16 01:39:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t… | 7.186315e+17 | 4.196984e+09 | 2016-04-09 02:47:55 +0000 | https://twitter.com/dog_rates/status/718631497683582976/photo/1 | 10 | 10 | None | None | None | None | None |
| 596 | 798697898615730177 | NaN | NaN | 2016-11-16 01:23:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn | 7.128090e+17 | 4.196984e+09 | 2016-03-24 01:11:29 +0000 | https://twitter.com/dog_rates/status/712809025985978368/photo/1,https://twitter.com/dog_rates/status/712809025985978368/photo/1 | 10 | 10 | Stubert | None | None | None | None |
| 597 | 798694562394996736 | NaN | NaN | 2016-11-16 01:09:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL | 7.012147e+17 | 4.196984e+09 | 2016-02-21 01:19:47 +0000 | https://twitter.com/dog_rates/status/701214700881756160/photo/1,https://twitter.com/dog_rates/status/701214700881756160/photo/1 | 12 | 10 | None | None | None | None | None |
| 598 | 798686750113755136 | NaN | NaN | 2016-11-16 00:38:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/Y… | 6.833919e+17 | 4.196984e+09 | 2016-01-02 20:58:09 +0000 | https://twitter.com/dog_rates/status/683391852557561860/photo/1 | 11 | 10 | Jack | None | None | None | None |
| 599 | 798682547630837760 | NaN | NaN | 2016-11-16 00:22:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.… | 6.769365e+17 | 4.196984e+09 | 2015-12-16 01:27:03 +0000 | https://twitter.com/dog_rates/status/676936541936185344/photo/1 | 8 | 10 | None | None | None | pupper | None |
| 600 | 798673117451325440 | NaN | NaN | 2016-11-15 23:44:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH | 6.755011e+17 | 4.196984e+09 | 2015-12-12 02:23:01 +0000 | https://twitter.com/dog_rates/status/675501075957489664/photo/1,https://twitter.com/dog_rates/status/675501075957489664/photo/1 | 13 | 10 | None | None | None | None | None |
| 601 | 798665375516884993 | NaN | NaN | 2016-11-15 23:13:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH | 6.718968e+17 | 4.196984e+09 | 2015-12-02 03:40:57 +0000 | https://twitter.com/dog_rates/status/671896809300709376/photo/1,https://twitter.com/dog_rates/status/671896809300709376/photo/1 | 10 | 10 | Lola | None | None | None | None |
| 602 | 798644042770751489 | NaN | NaN | 2016-11-15 21:49:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq | 6.704450e+17 | 4.196984e+09 | 2015-11-28 03:31:48 +0000 | https://twitter.com/dog_rates/status/670444955656130560/photo/1,https://twitter.com/dog_rates/status/670444955656130560/photo/1 | 10 | 10 | Paull | None | None | None | None |
| 603 | 798628517273620480 | NaN | NaN | 2016-11-15 20:47:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 | 6.675094e+17 | 4.196984e+09 | 2015-11-20 01:06:48 +0000 | https://twitter.com/dog_rates/status/667509364010450944/photo/1,https://twitter.com/dog_rates/status/667509364010450944/photo/1 | 12 | 10 | None | None | None | None | None |
| 604 | 798585098161549313 | NaN | NaN | 2016-11-15 17:54:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.… | 6.671828e+17 | 4.196984e+09 | 2015-11-19 03:29:07 +0000 | https://twitter.com/dog_rates/status/667182792070062081/photo/1 | 10 | 10 | Timison | None | None | None | None |
| 605 | 798576900688019456 | NaN | NaN | 2016-11-15 17:22:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/… | 6.661041e+17 | 4.196984e+09 | 2015-11-16 04:02:55 +0000 | https://twitter.com/dog_rates/status/666104133288665088/photo/1 | 1 | 10 | None | None | None | None | None |
| 606 | 798340744599797760 | NaN | NaN | 2016-11-15 01:44:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm | 7.717705e+17 | 4.196984e+09 | 2016-09-02 18:03:10 +0000 | https://twitter.com/dog_rates/status/771770456517009408/photo/1,https://twitter.com/dog_rates/status/771770456517009408/photo/1 | 11 | 10 | Davey | None | None | None | None |
| 607 | 798209839306514432 | NaN | NaN | 2016-11-14 17:03:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798209839306514432/photo/1 | 13 | 10 | Cooper | None | None | None | None |
| 608 | 797971864723324932 | NaN | NaN | 2016-11-14 01:18:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797971864723324932/photo/1,https://twitter.com/dog_rates/status/797971864723324932/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 609 | 797545162159308800 | NaN | NaN | 2016-11-12 21:02:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1,https://twitter.com/dog_rates/status/797545162159308800/photo/1 | 12 | 10 | Cassie | None | None | None | None |
| 610 | 797236660651966464 | NaN | NaN | 2016-11-12 00:36:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797236660651966464/photo/1,https://twitter.com/dog_rates/status/797236660651966464/photo/1 | 12 | 10 | Pancake | None | None | None | None |
| 611 | 797165961484890113 | 7.971238e+17 | 2.916630e+07 | 2016-11-11 19:55:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 612 | 796904159865868288 | NaN | NaN | 2016-11-11 02:35:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https:/… | 6.873173e+17 | 4.196984e+09 | 2016-01-13 16:56:30 +0000 | https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 | 11 | 10 | Tyrone | None | None | None | None |
| 613 | 796865951799083009 | NaN | NaN | 2016-11-11 00:03:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796865951799083009/photo/1 | 12 | 10 | Tyr | None | None | None | None |
| 614 | 796759840936919040 | NaN | NaN | 2016-11-10 17:02:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796759840936919040/photo/1,https://twitter.com/dog_rates/status/796759840936919040/photo/1 | 11 | 10 | Romeo | None | None | None | None |
| 615 | 796563435802726400 | NaN | NaN | 2016-11-10 04:01:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5d… | 7.809316e+17 | 4.196984e+09 | 2016-09-28 00:46:20 +0000 | https://twitter.com/dog_rates/status/780931614150983680/photo/1 | 13 | 10 | None | None | None | None | puppo |
| 616 | 796484825502875648 | NaN | NaN | 2016-11-09 22:49:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796484825502875648/photo/1 | 12 | 10 | None | doggo | None | None | None |
| 617 | 796387464403357696 | NaN | NaN | 2016-11-09 16:22:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796387464403357696/photo/1,https://twitter.com/dog_rates/status/796387464403357696/photo/1 | 12 | 10 | Snicku | None | None | None | None |
| 618 | 796177847564038144 | NaN | NaN | 2016-11-09 02:29:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt | 7.961497e+17 | 4.196984e+09 | 2016-11-09 00:37:46 +0000 | https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 | 11 | 10 | Ruby | None | None | None | None |
| 619 | 796149749086875649 | NaN | NaN | 2016-11-09 00:37:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796149749086875649/photo/1,https://twitter.com/dog_rates/status/796149749086875649/photo/1 | 11 | 10 | Ruby | None | None | None | None |
| 620 | 796125600683540480 | NaN | NaN | 2016-11-08 23:01:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 | NaN | NaN | NaN | https://twitter.com/king5seattle/status/796123679771897856 | 13 | 10 | None | None | None | None | None |
| 621 | 796116448414461957 | NaN | NaN | 2016-11-08 22:25:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796116448414461957/photo/1 | 11 | 10 | None | None | None | None | None |
| 622 | 796080075804475393 | NaN | NaN | 2016-11-08 20:00:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796080075804475393/photo/1 | 12 | 10 | Yogi | None | None | None | None |
| 623 | 796031486298386433 | NaN | NaN | 2016-11-08 16:47:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796031486298386433/photo/1 | 13 | 10 | Daisy | None | None | None | None |
| 624 | 795464331001561088 | NaN | NaN | 2016-11-07 03:14:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795464331001561088/video/1 | 13 | 10 | None | doggo | None | None | None |
| 625 | 795400264262053889 | NaN | NaN | 2016-11-06 22:59:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1,https://twitter.com/dog_rates/status/795400264262053889/photo/1 | 12 | 10 | Brody | None | None | None | None |
| 626 | 795076730285391872 | NaN | NaN | 2016-11-06 01:33:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1,https://twitter.com/dog_rates/status/795076730285391872/photo/1 | 11 | 10 | Bailey | None | None | None | None |
| 627 | 794983741416415232 | NaN | NaN | 2016-11-05 19:24:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq | 7.895309e+17 | 4.196984e+09 | 2016-10-21 18:16:44 +0000 | https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 | 12 | 10 | Rizzy | None | None | None | None |
| 628 | 794926597468000259 | NaN | NaN | 2016-11-05 15:37:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794926597468000259/photo/1 | 12 | 10 | Mack | None | None | None | None |
| 629 | 794355576146903043 | NaN | NaN | 2016-11-04 01:48:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq | 7.887659e+17 | 4.196984e+09 | 2016-10-19 15:37:03 +0000 | https://twitter.com/dog_rates/status/788765914992902144/photo/1,https://twitter.com/dog_rates/status/788765914992902144/photo/1 | 12 | 10 | Butter | None | None | None | None |
| 630 | 794332329137291264 | NaN | NaN | 2016-11-04 00:15:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794332329137291264/photo/1 | 12 | 10 | Nimbus | None | None | None | None |
| 631 | 794205286408003585 | NaN | NaN | 2016-11-03 15:51:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1,https://twitter.com/dog_rates/status/794205286408003585/photo/1 | 14 | 10 | Laika | None | None | pupper | None |
| 632 | 793962221541933056 | NaN | NaN | 2016-11-02 23:45:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793962221541933056/photo/1,https://twitter.com/dog_rates/status/793962221541933056/photo/1 | 12 | 10 | Maximus | None | None | None | None |
| 633 | 793845145112371200 | NaN | NaN | 2016-11-02 16:00:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793845145112371200/photo/1 | 13 | 10 | Clark | None | None | None | None |
| 634 | 793614319594401792 | NaN | NaN | 2016-11-02 00:42:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh | 7.916723e+17 | 4.196984e+09 | 2016-10-27 16:06:04 +0000 | https://twitter.com/dog_rates/status/791672322847637504/photo/1,https://twitter.com/dog_rates/status/791672322847637504/photo/1 | 13 | 10 | None | None | None | None | None |
| 635 | 793601777308463104 | NaN | NaN | 2016-11-01 23:53:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793601777308463104/photo/1 | 12 | 10 | Dobby | None | None | None | None |
| 636 | 793500921481273345 | NaN | NaN | 2016-11-01 17:12:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793500921481273345/photo/1,https://twitter.com/dog_rates/status/793500921481273345/photo/1 | 12 | 10 | Fiona | None | None | None | None |
| 637 | 793286476301799424 | NaN | NaN | 2016-11-01 03:00:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793286476301799424/photo/1,https://twitter.com/dog_rates/status/793286476301799424/photo/1 | 13 | 10 | Moreton | None | None | None | None |
| 638 | 793271401113350145 | NaN | NaN | 2016-11-01 02:00:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793271401113350145/photo/1 | 12 | 10 | Dave | None | None | None | None |
| 639 | 793256262322548741 | NaN | NaN | 2016-11-01 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793256262322548741/photo/1 | 12 | 10 | None | None | None | None | None |
| 640 | 793241302385262592 | NaN | NaN | 2016-11-01 00:00:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793241302385262592/photo/1 | 13 | 10 | Tucker | None | None | None | None |
| 641 | 793226087023144960 | NaN | NaN | 2016-10-31 23:00:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1,https://twitter.com/dog_rates/status/793226087023144960/photo/1 | 11 | 10 | Juno | None | None | None | None |
| 642 | 793210959003287553 | NaN | NaN | 2016-10-31 22:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793210959003287553/photo/1 | 10 | 10 | Maude | None | None | None | None |
| 643 | 793195938047070209 | NaN | NaN | 2016-10-31 21:00:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793195938047070209/photo/1,https://twitter.com/dog_rates/status/793195938047070209/photo/1 | 12 | 10 | Lily | None | None | None | puppo |
| 644 | 793180763617361921 | NaN | NaN | 2016-10-31 20:00:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793180763617361921/photo/1 | 11 | 10 | Newt | None | None | None | None |
| 645 | 793165685325201412 | NaN | NaN | 2016-10-31 19:00:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793165685325201412/photo/1 | 12 | 10 | Benji | None | None | None | None |
| 646 | 793150605191548928 | NaN | NaN | 2016-10-31 18:00:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793150605191548928/photo/1 | 11 | 10 | Nida | None | None | None | None |
| 647 | 793135492858580992 | NaN | NaN | 2016-10-31 17:00:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793135492858580992/photo/1,https://twitter.com/dog_rates/status/793135492858580992/photo/1 | 13 | 10 | None | None | None | None | None |
| 648 | 793120401413079041 | NaN | NaN | 2016-10-31 16:00:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793120401413079041/photo/1 | 11 | 10 | Robin | None | None | None | None |
| 649 | 792913359805018113 | NaN | NaN | 2016-10-31 02:17:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1,https://twitter.com/dog_rates/status/792913359805018113/photo/1 | 13 | 10 | a | None | None | None | None |
| 650 | 792883833364439040 | NaN | NaN | 2016-10-31 00:20:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1,https://twitter.com/dog_rates/status/792883833364439040/photo/1 | 12 | 10 | Bailey | None | None | None | None |
| 651 | 792773781206999040 | NaN | NaN | 2016-10-30 17:02:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792773781206999040/photo/1 | 12 | 10 | Monster | None | None | None | None |
| 652 | 792394556390137856 | NaN | NaN | 2016-10-29 15:55:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792394556390137856/photo/1,https://twitter.com/dog_rates/status/792394556390137856/photo/1 | 12 | 10 | BeBe | None | None | None | None |
| 653 | 792050063153438720 | NaN | NaN | 2016-10-28 17:07:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792050063153438720/photo/1,https://twitter.com/dog_rates/status/792050063153438720/photo/1 | 11 | 10 | Remus | None | None | None | None |
| 654 | 791821351946420224 | NaN | NaN | 2016-10-28 01:58:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p | 6.848310e+17 | 4.196984e+09 | 2016-01-06 20:16:44 +0000 | https://vine.co/v/eEZXZI1rqxX,https://vine.co/v/eEZXZI1rqxX | 13 | 10 | None | None | None | pupper | None |
| 655 | 791784077045166082 | NaN | NaN | 2016-10-27 23:30:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE | 6.820881e+17 | 4.196984e+09 | 2015-12-30 06:37:25 +0000 | https://vine.co/v/iqMjlxULzbn,https://vine.co/v/iqMjlxULzbn | 12 | 10 | None | None | None | None | None |
| 656 | 791780927877898241 | NaN | NaN | 2016-10-27 23:17:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u | 7.467577e+17 | 4.196984e+09 | 2016-06-25 17:31:25 +0000 | https://vine.co/v/5BYq6hmrEI3,https://vine.co/v/5BYq6hmrEI3 | 11 | 10 | Maddie | None | None | None | None |
| 657 | 791774931465953280 | NaN | NaN | 2016-10-27 22:53:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 | NaN | NaN | NaN | https://vine.co/v/ea0OwvPTx9l | 14 | 10 | None | None | None | None | None |
| 658 | 791672322847637504 | NaN | NaN | 2016-10-27 16:06:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791672322847637504/photo/1 | 13 | 10 | None | None | None | None | None |
| 659 | 791406955684368384 | NaN | NaN | 2016-10-26 22:31:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1,https://twitter.com/dog_rates/status/791406955684368384/photo/1 | 12 | 10 | Levi | None | None | None | None |
| 660 | 791312159183634433 | NaN | NaN | 2016-10-26 16:14:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1,https://twitter.com/dog_rates/status/791312159183634433/photo/1 | 12 | 10 | Mabel | None | None | None | None |
| 661 | 791026214425268224 | NaN | NaN | 2016-10-25 21:18:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo | 7.638376e+17 | 4.196984e+09 | 2016-08-11 20:40:41 +0000 | https://twitter.com/dog_rates/status/763837565564780549/photo/1,https://twitter.com/dog_rates/status/763837565564780549/photo/1 | 11 | 10 | Alfie | None | None | None | None |
| 662 | 790987426131050500 | NaN | NaN | 2016-10-25 18:44:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790987426131050500/photo/1 | 12 | 10 | Misty | None | None | None | None |
| 663 | 790946055508652032 | NaN | NaN | 2016-10-25 16:00:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790946055508652032/photo/1 | 12 | 10 | Betty | None | None | None | puppo |
| 664 | 790723298204217344 | NaN | NaN | 2016-10-25 01:14:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v | 7.899865e+17 | 4.196984e+09 | 2016-10-23 00:27:05 +0000 | https://twitter.com/dog_rates/status/789986466051088384/photo/1,https://twitter.com/dog_rates/status/789986466051088384/photo/1 | 12 | 10 | Happy | None | None | None | None |
| 665 | 790698755171364864 | NaN | NaN | 2016-10-24 23:37:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790698755171364864/photo/1 | 12 | 10 | Mosby | None | None | None | None |
| 666 | 790581949425475584 | NaN | NaN | 2016-10-24 15:53:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790581949425475584/photo/1,https://twitter.com/dog_rates/status/790581949425475584/photo/1 | 11 | 10 | Duke | None | None | None | None |
| 667 | 790337589677002753 | NaN | NaN | 2016-10-23 23:42:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790337589677002753/photo/1 | 12 | 10 | Maggie | None | None | None | None |
| 668 | 790277117346975746 | NaN | NaN | 2016-10-23 19:42:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790277117346975746/photo/1 | 11 | 10 | Bruce | None | None | None | None |
| 669 | 790227638568808452 | NaN | NaN | 2016-10-23 16:25:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3… | 7.626999e+17 | 4.196984e+09 | 2016-08-08 17:19:51 +0000 | https://twitter.com/dog_rates/status/762699858130116608/photo/1 | 11 | 10 | Leela | None | None | None | None |
| 670 | 789986466051088384 | NaN | NaN | 2016-10-23 00:27:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789986466051088384/photo/1 | 12 | 10 | Happy | None | None | None | None |
| 671 | 789960241177853952 | NaN | NaN | 2016-10-22 22:42:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.… | 7.624645e+17 | 4.196984e+09 | 2016-08-08 01:44:46 +0000 | https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 | 12 | 10 | Buddy | None | None | None | None |
| 672 | 789903600034189313 | NaN | NaN | 2016-10-22 18:57:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H | NaN | NaN | NaN | https://vine.co/v/5wPT1aBxPQZ | 13 | 10 | Ralphy | None | None | pupper | None |
| 673 | 789628658055020548 | NaN | NaN | 2016-10-22 00:45:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789628658055020548/photo/1 | 13 | 10 | Eli | None | None | None | None |
| 674 | 789599242079838210 | NaN | NaN | 2016-10-21 22:48:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789599242079838210/photo/1,https://twitter.com/dog_rates/status/789599242079838210/photo/1 | 12 | 10 | Brownie | None | None | None | None |
| 675 | 789530877013393408 | NaN | NaN | 2016-10-21 18:16:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1,https://twitter.com/dog_rates/status/789530877013393408/photo/1 | 12 | 10 | Rizzy | None | None | None | None |
| 676 | 789314372632018944 | NaN | NaN | 2016-10-21 03:56:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM | NaN | NaN | NaN | https://twitter.com/sebscat/status/788818328538099712 | 13 | 10 | None | None | None | None | None |
| 677 | 789280767834746880 | NaN | NaN | 2016-10-21 01:42:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t… | 7.507196e+17 | 4.196984e+09 | 2016-07-06 15:54:42 +0000 | https://twitter.com/dog_rates/status/750719632563142656/photo/1 | 12 | 10 | Meyer | None | None | None | None |
| 678 | 789268448748703744 | NaN | NaN | 2016-10-21 00:53:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789268448748703744/photo/1 | 10 | 10 | Stella | None | None | None | None |
| 679 | 789137962068021249 | NaN | NaN | 2016-10-20 16:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1,https://twitter.com/dog_rates/status/789137962068021249/photo/1 | 12 | 10 | Bo | None | None | None | None |
| 680 | 788908386943430656 | NaN | NaN | 2016-10-20 01:03:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788908386943430656/photo/1 | 11 | 10 | Lucy | None | None | None | None |
| 681 | 788765914992902144 | NaN | NaN | 2016-10-19 15:37:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788765914992902144/photo/1 | 12 | 10 | Butter | None | None | None | None |
| 682 | 788552643979468800 | NaN | NaN | 2016-10-19 01:29:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | 7.363926e+17 | 4.196984e+09 | 2016-05-28 03:04:00 +0000 | https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 | 13 | 10 | mad | None | None | pupper | None |
| 683 | 788412144018661376 | NaN | NaN | 2016-10-18 16:11:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788412144018661376/photo/1,https://twitter.com/dog_rates/status/788412144018661376/photo/1 | 11 | 10 | Dexter | None | None | None | None |
| 684 | 788178268662984705 | NaN | NaN | 2016-10-18 00:41:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1,https://twitter.com/dog_rates/status/788178268662984705/photo/1 | 13 | 10 | None | None | None | None | None |
| 685 | 788150585577050112 | NaN | NaN | 2016-10-17 22:51:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1,https://twitter.com/dog_rates/status/788150585577050112/photo/1 | 13 | 10 | Leo | None | None | None | None |
| 686 | 788070120937619456 | NaN | NaN | 2016-10-17 17:32:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK | 7.610045e+17 | 4.196984e+09 | 2016-08-04 01:03:17 +0000 | https://twitter.com/dog_rates/status/761004547850530816/photo/1,https://twitter.com/dog_rates/status/761004547850530816/photo/1 | 11 | 10 | Bo | None | None | None | None |
| 687 | 788039637453406209 | NaN | NaN | 2016-10-17 15:31:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788039637453406209/photo/1,https://twitter.com/dog_rates/status/788039637453406209/photo/1 | 12 | 10 | None | None | None | None | None |
| 688 | 787810552592695296 | NaN | NaN | 2016-10-17 00:20:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787810552592695296/photo/1,https://twitter.com/dog_rates/status/787810552592695296/photo/1 | 11 | 10 | Frank | None | None | None | None |
| 689 | 787717603741622272 | NaN | NaN | 2016-10-16 18:11:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1,https://twitter.com/dog_rates/status/787717603741622272/photo/1 | 13 | 10 | Tonks | None | None | None | puppo |
| 690 | 787397959788929025 | NaN | NaN | 2016-10-15 21:01:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787397959788929025/photo/1 | 11 | 10 | Moose | None | None | None | None |
| 691 | 787322443945877504 | NaN | NaN | 2016-10-15 16:01:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787322443945877504/photo/1 | 10 | 10 | Lincoln | None | None | None | None |
| 692 | 787111942498508800 | NaN | NaN | 2016-10-15 02:04:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc | 7.529324e+17 | 4.196984e+09 | 2016-07-12 18:27:35 +0000 | https://vine.co/v/OEppMFbejFz,https://vine.co/v/OEppMFbejFz | 12 | 10 | Carl | None | None | None | None |
| 693 | 786963064373534720 | NaN | NaN | 2016-10-14 16:13:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786963064373534720/photo/1 | 12 | 10 | Rory | None | None | None | None |
| 694 | 786729988674449408 | NaN | NaN | 2016-10-14 00:47:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.… | 7.594477e+17 | 4.196984e+09 | 2016-07-30 17:56:51 +0000 | https://twitter.com/dog_rates/status/759447681597108224/photo/1 | 11 | 10 | Oakley | None | None | None | None |
| 695 | 786709082849828864 | NaN | NaN | 2016-10-13 23:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786709082849828864/photo/1 | 75 | 10 | Logan | None | None | None | None |
| 696 | 786664955043049472 | NaN | NaN | 2016-10-13 20:28:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786664955043049472/photo/1 | 12 | 10 | None | None | None | None | None |
| 697 | 786595970293370880 | NaN | NaN | 2016-10-13 15:54:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786595970293370880/photo/1 | 11 | 10 | Dale | None | None | None | None |
| 698 | 786363235746385920 | NaN | NaN | 2016-10-13 00:29:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1,https://twitter.com/dog_rates/status/786363235746385920/photo/1 | 13 | 10 | Rizzo | doggo | None | None | None |
| 699 | 786286427768250368 | NaN | NaN | 2016-10-12 19:24:27 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit | NaN | NaN | NaN | https://vine.co/v/5XH0WqHwiFp | 12 | 10 | Arnie | None | None | None | None |
| 700 | 786233965241827333 | NaN | NaN | 2016-10-12 15:55:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786233965241827333/photo/1 | 11 | 10 | Mattie | None | None | None | None |
| 701 | 786051337297522688 | 7.727430e+17 | 7.305050e+17 | 2016-10-12 03:50:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13/10 for breakdancing puppo @shibbnbot | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | puppo |
| 702 | 786036967502913536 | NaN | NaN | 2016-10-12 02:53:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD | 7.798343e+17 | 4.196984e+09 | 2016-09-25 00:06:08 +0000 | https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 | 11 | 10 | Scout | None | None | None | None |
| 703 | 785927819176054784 | NaN | NaN | 2016-10-11 19:39:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785927819176054784/photo/1 | 12 | 10 | Lucy | None | None | None | None |
| 704 | 785872687017132033 | NaN | NaN | 2016-10-11 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785872687017132033/video/1 | 12 | 10 | Rusty | None | None | None | None |
| 705 | 785639753186217984 | NaN | NaN | 2016-10-11 00:34:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785639753186217984/photo/1,https://twitter.com/dog_rates/status/785639753186217984/photo/1 | 10 | 10 | Pinot | doggo | None | pupper | None |
| 706 | 785533386513321988 | NaN | NaN | 2016-10-10 17:32:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785533386513321988/photo/1,https://twitter.com/dog_rates/status/785533386513321988/photo/1 | 11 | 10 | Dallas | None | None | None | None |
| 707 | 785515384317313025 | NaN | NaN | 2016-10-10 16:20:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Today, 10/10, should be National Dog Rates Day | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 708 | 785264754247995392 | NaN | NaN | 2016-10-09 23:44:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785264754247995392/photo/1 | 12 | 10 | Doc | None | None | None | None |
| 709 | 785170936622350336 | NaN | NaN | 2016-10-09 17:31:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1,https://twitter.com/dog_rates/status/785170936622350336/photo/1 | 11 | 10 | Hero | None | None | None | None |
| 710 | 784826020293709826 | NaN | NaN | 2016-10-08 18:41:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784826020293709826/photo/1 | 13 | 10 | Rusty | None | None | None | None |
| 711 | 784517518371221505 | NaN | NaN | 2016-10-07 22:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1,https://twitter.com/dog_rates/status/784517518371221505/photo/1 | 11 | 10 | Frankie | None | None | None | None |
| 712 | 784431430411685888 | NaN | NaN | 2016-10-07 16:33:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784431430411685888/photo/1 | 12 | 10 | Stormy | None | None | None | None |
| 713 | 784183165795655680 | NaN | NaN | 2016-10-07 00:06:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ | NaN | NaN | NaN | https://vine.co/v/5ghHLBMMdlV | 12 | 10 | Reginald | None | None | None | puppo |
| 714 | 784057939640352768 | NaN | NaN | 2016-10-06 15:49:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC | NaN | NaN | NaN | https://vine.co/v/5gKxeUpuKEr | 12 | 10 | Balto | None | None | None | None |
| 715 | 783839966405230592 | NaN | NaN | 2016-10-06 01:23:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1,https://twitter.com/dog_rates/status/783839966405230592/photo/1 | 13 | 10 | Riley | None | None | None | None |
| 716 | 783821107061198850 | NaN | NaN | 2016-10-06 00:08:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783821107061198850/photo/1,https://twitter.com/dog_rates/status/783821107061198850/photo/1 | 12 | 10 | Mairi | None | None | None | None |
| 717 | 783695101801398276 | NaN | NaN | 2016-10-05 15:47:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1,https://twitter.com/dog_rates/status/783695101801398276/photo/1 | 12 | 10 | Loomis | None | None | None | None |
| 718 | 783466772167098368 | NaN | NaN | 2016-10-05 00:40:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783466772167098368/photo/1,https://twitter.com/dog_rates/status/783466772167098368/photo/1 | 11 | 10 | Finn | None | None | None | None |
| 719 | 783391753726550016 | NaN | NaN | 2016-10-04 19:42:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1,https://twitter.com/dog_rates/status/783391753726550016/photo/1 | 13 | 10 | Godi | None | None | None | None |
| 720 | 783347506784731136 | NaN | NaN | 2016-10-04 16:46:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK | 6.742918e+17 | 4.196984e+09 | 2015-12-08 18:17:56 +0000 | https://twitter.com/dog_rates/status/674291837063053312/photo/1,https://twitter.com/dog_rates/status/674291837063053312/photo/1 | 11 | 10 | Kenny | None | None | None | None |
| 721 | 783334639985389568 | NaN | NaN | 2016-10-04 15:55:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1,https://twitter.com/dog_rates/status/783334639985389568/photo/1 | 12 | 10 | Dave | None | None | None | None |
| 722 | 783085703974514689 | NaN | NaN | 2016-10-03 23:25:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783085703974514689/photo/1,https://twitter.com/dog_rates/status/783085703974514689/photo/1 | 11 | 10 | Earl | None | None | None | None |
| 723 | 782969140009107456 | NaN | NaN | 2016-10-03 15:42:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782969140009107456/photo/1,https://twitter.com/dog_rates/status/782969140009107456/photo/1 | 12 | 10 | Cali | None | None | None | None |
| 724 | 782747134529531904 | NaN | NaN | 2016-10-03 01:00:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782747134529531904/photo/1 | 11 | 10 | Deacon | doggo | None | None | None |
| 725 | 782722598790725632 | NaN | NaN | 2016-10-02 23:23:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782722598790725632/photo/1 | 10 | 10 | Penny | None | None | None | None |
| 726 | 782598640137187329 | NaN | NaN | 2016-10-02 15:10:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782598640137187329/photo/1 | 11 | 10 | Timmy | None | None | None | None |
| 727 | 782305867769217024 | NaN | NaN | 2016-10-01 19:47:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1,https://twitter.com/dog_rates/status/782305867769217024/photo/1 | 12 | 10 | Sampson | doggo | None | None | None |
| 728 | 782021823840026624 | NaN | NaN | 2016-10-01 00:58:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 | 7.076109e+17 | 4.196984e+09 | 2016-03-09 16:56:11 +0000 | https://twitter.com/dog_rates/status/707610948723478529/photo/1,https://twitter.com/dog_rates/status/707610948723478529/photo/1 | 12 | 10 | Harper | None | None | None | None |
| 729 | 781955203444699136 | NaN | NaN | 2016-09-30 20:33:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781955203444699136/photo/1 | 11 | 10 | Chipson | None | None | None | None |
| 730 | 781661882474196992 | NaN | NaN | 2016-09-30 01:08:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781661882474196992/photo/1 | 5 | 10 | None | None | None | None | None |
| 731 | 781655249211752448 | NaN | NaN | 2016-09-30 00:41:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 | NaN | NaN | NaN | https://vine.co/v/5rt6T3qm7hL | 11 | 10 | Combo | doggo | None | None | None |
| 732 | 781524693396357120 | NaN | NaN | 2016-09-29 16:03:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781524693396357120/photo/1 | 12 | 10 | None | None | None | None | None |
| 733 | 781308096455073793 | NaN | NaN | 2016-09-29 01:42:20 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u | NaN | NaN | NaN | https://vine.co/v/5rgu2Law2ut | 12 | 10 | None | doggo | None | pupper | None |
| 734 | 781251288990355457 | NaN | NaN | 2016-09-28 21:56:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781251288990355457/photo/1,https://twitter.com/dog_rates/status/781251288990355457/photo/1 | 11 | 10 | Oakley | None | None | None | None |
| 735 | 781163403222056960 | NaN | NaN | 2016-09-28 16:07:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781163403222056960/photo/1 | 10 | 10 | None | None | None | None | None |
| 736 | 780931614150983680 | NaN | NaN | 2016-09-28 00:46:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780931614150983680/photo/1 | 13 | 10 | None | None | None | None | puppo |
| 737 | 780858289093574656 | NaN | NaN | 2016-09-27 19:54:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780858289093574656/photo/1 | 10 | 10 | Dash | None | None | None | None |
| 738 | 780800785462489090 | NaN | NaN | 2016-09-27 16:06:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1,https://twitter.com/dog_rates/status/780800785462489090/photo/1 | 11 | 10 | Koda | None | None | None | None |
| 739 | 780601303617732608 | NaN | NaN | 2016-09-27 02:53:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780601303617732608/photo/1 | 12 | 10 | Hercules | None | None | None | None |
| 740 | 780543529827336192 | NaN | NaN | 2016-09-26 23:04:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780543529827336192/photo/1 | 12 | 10 | None | None | None | None | None |
| 741 | 780496263422808064 | NaN | NaN | 2016-09-26 19:56:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b | 7.424232e+17 | 4.196984e+09 | 2016-06-13 18:27:32 +0000 | https://twitter.com/dog_rates/status/742423170473463808/photo/1,https://twitter.com/dog_rates/status/742423170473463808/photo/1 | 12 | 10 | Bell | None | None | None | None |
| 742 | 780476555013349377 | NaN | NaN | 2016-09-26 18:38:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @Patreon: Well. @dog_rates is on Patreon. \n\n12/10. \n\nhttps://t.co/rnKvzt6RJs https://t.co/v4e2ywe8iO | 7.804657e+17 | 1.228326e+09 | 2016-09-26 17:55:00 +0000 | https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1,https://www.patreon.com/WeRateDogs,https://twitter.com/Patreon/status/780465709297995776/photo/1 | 12 | 10 | None | None | None | None | None |
| 743 | 780459368902959104 | NaN | NaN | 2016-09-26 17:29:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780459368902959104/photo/1 | 11 | 10 | Bear | None | None | None | None |
| 744 | 780192070812196864 | NaN | NaN | 2016-09-25 23:47:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780192070812196864/photo/1 | 11 | 10 | None | None | None | None | None |
| 745 | 780092040432480260 | NaN | NaN | 2016-09-25 17:10:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.c… | 7.533757e+17 | 4.196984e+09 | 2016-07-13 23:48:51 +0000 | https://twitter.com/dog_rates/status/753375668877008896/photo/1 | 8 | 10 | Hank | None | None | None | None |
| 746 | 780074436359819264 | NaN | NaN | 2016-09-25 16:00:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb | NaN | NaN | NaN | https://vine.co/v/5nzYBpl0TY2 | 10 | 10 | None | doggo | None | None | None |
| 747 | 779834332596887552 | NaN | NaN | 2016-09-25 00:06:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1,https://twitter.com/dog_rates/status/779834332596887552/photo/1 | 11 | 10 | Scout | None | None | None | None |
| 748 | 779377524342161408 | NaN | NaN | 2016-09-23 17:50:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779377524342161408/video/1 | 12 | 10 | None | None | None | pupper | None |
| 749 | 779124354206535695 | NaN | NaN | 2016-09-23 01:04:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/… | 6.794628e+17 | 4.196984e+09 | 2015-12-23 00:45:35 +0000 | https://twitter.com/dog_rates/status/679462823135686656/photo/1 | 11 | 10 | Hurley | None | None | None | None |
| 750 | 779123168116150273 | NaN | NaN | 2016-09-23 01:00:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779123168116150273/photo/1 | 12 | 10 | Reggie | None | None | None | None |
| 751 | 779056095788752897 | NaN | NaN | 2016-09-22 20:33:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779056095788752897/photo/1,https://twitter.com/dog_rates/status/779056095788752897/photo/1 | 13 | 10 | None | None | None | None | None |
| 752 | 778990705243029504 | NaN | NaN | 2016-09-22 16:13:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778990705243029504/photo/1,https://twitter.com/dog_rates/status/778990705243029504/photo/1 | 11 | 10 | Jay | None | None | None | None |
| 753 | 778774459159379968 | NaN | NaN | 2016-09-22 01:54:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE | 7.580996e+17 | 4.196984e+09 | 2016-07-27 00:40:12 +0000 | https://vine.co/v/hQJbaj1VpIz,https://vine.co/v/hQJbaj1VpIz | 13 | 10 | None | None | None | None | None |
| 754 | 778764940568104960 | NaN | NaN | 2016-09-22 01:16:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB | NaN | NaN | NaN | https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be | 13 | 10 | None | None | None | None | None |
| 755 | 778748913645780993 | NaN | NaN | 2016-09-22 00:13:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778748913645780993/photo/1 | 11 | 10 | Mya | None | None | None | None |
| 756 | 778650543019483137 | NaN | NaN | 2016-09-21 17:42:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1,https://twitter.com/dog_rates/status/778650543019483137/photo/1 | 10 | 10 | Strider | None | None | None | None |
| 757 | 778624900596654080 | NaN | NaN | 2016-09-21 16:00:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778624900596654080/photo/1,https://twitter.com/dog_rates/status/778624900596654080/photo/1 | 11 | 10 | Penny | None | None | None | None |
| 758 | 778408200802557953 | NaN | NaN | 2016-09-21 01:39:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1,https://twitter.com/dog_rates/status/778408200802557953/photo/1 | 14 | 10 | None | None | None | None | None |
| 759 | 778396591732486144 | NaN | NaN | 2016-09-21 00:53:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | 7.030419e+17 | 4.196984e+09 | 2016-02-26 02:20:37 +0000 | https://twitter.com/dog_rates/status/703041949650034688/photo/1,https://twitter.com/dog_rates/status/703041949650034688/photo/1 | 10 | 10 | an | None | None | None | None |
| 760 | 778383385161035776 | NaN | NaN | 2016-09-21 00:00:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778383385161035776/photo/1 | 13 | 10 | Nala | None | None | None | None |
| 761 | 778286810187399168 | NaN | NaN | 2016-09-20 17:36:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778286810187399168/photo/1,https://twitter.com/dog_rates/status/778286810187399168/photo/1 | 11 | 10 | Stanley | None | None | None | None |
| 762 | 778039087836069888 | NaN | NaN | 2016-09-20 01:12:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1,https://twitter.com/dog_rates/status/778039087836069888/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 763 | 778027034220126208 | NaN | NaN | 2016-09-20 00:24:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778027034220126208/photo/1 | 27 | 10 | Sophie | None | None | pupper | None |
| 764 | 777953400541634568 | NaN | NaN | 2016-09-19 19:31:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://… | 7.681934e+17 | 4.196984e+09 | 2016-08-23 21:09:14 +0000 | https://twitter.com/dog_rates/status/768193404517830656/photo/1 | 8 | 10 | Gerald | doggo | None | None | None |
| 765 | 777885040357281792 | NaN | NaN | 2016-09-19 15:00:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777885040357281792/photo/1,https://twitter.com/dog_rates/status/777885040357281792/photo/1 | 3 | 10 | Wesley | None | None | None | None |
| 766 | 777684233540206592 | NaN | NaN | 2016-09-19 01:42:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777684233540206592/photo/1 | 12 | 10 | None | None | None | None | None |
| 767 | 777641927919427584 | NaN | NaN | 2016-09-18 22:54:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS | 7.504293e+17 | 4.196984e+09 | 2016-07-05 20:41:01 +0000 | https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 | 12 | 10 | Arnie | None | None | None | None |
| 768 | 777621514455814149 | NaN | NaN | 2016-09-18 21:33:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777621514455814149/photo/1 | 12 | 10 | Derek | None | None | None | None |
| 769 | 777189768882946048 | NaN | NaN | 2016-09-17 16:57:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777189768882946048/photo/1,https://twitter.com/dog_rates/status/777189768882946048/photo/1 | 12 | 10 | Jeffrey | None | None | None | None |
| 770 | 776819012571455488 | NaN | NaN | 2016-09-16 16:24:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC | 6.798284e+17 | 4.196984e+09 | 2015-12-24 00:58:27 +0000 | https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 771 | 776813020089548800 | NaN | NaN | 2016-09-16 16:00:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776813020089548800/photo/1,https://twitter.com/dog_rates/status/776813020089548800/photo/1 | 12 | 10 | Solomon | None | None | None | None |
| 772 | 776477788987613185 | NaN | NaN | 2016-09-15 17:48:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776477788987613185/photo/1,https://twitter.com/dog_rates/status/776477788987613185/photo/1 | 11 | 10 | Huck | None | None | pupper | None |
| 773 | 776249906839351296 | NaN | NaN | 2016-09-15 02:42:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://… | 7.007478e+17 | 4.196984e+09 | 2016-02-19 18:24:26 +0000 | https://twitter.com/dog_rates/status/700747788515020802/photo/1 | 11 | 10 | very | None | None | None | None |
| 774 | 776218204058357768 | NaN | NaN | 2016-09-15 00:36:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1,https://twitter.com/dog_rates/status/776218204058357768/photo/1 | 13 | 10 | None | None | floofer | None | None |
| 775 | 776201521193218049 | NaN | NaN | 2016-09-14 23:30:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776201521193218049/photo/1 | 10 | 10 | O | None | None | None | None |
| 776 | 776113305656188928 | NaN | NaN | 2016-09-14 17:40:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776113305656188928/photo/1 | 11 | 10 | Sampson | None | None | pupper | None |
| 777 | 776088319444877312 | NaN | NaN | 2016-09-14 16:00:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1,https://twitter.com/dog_rates/status/776088319444877312/photo/1 | 10 | 10 | None | None | None | None | None |
| 778 | 775898661951791106 | NaN | NaN | 2016-09-14 03:27:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda | 7.331095e+17 | 4.196984e+09 | 2016-05-19 01:38:16 +0000 | https://twitter.com/dog_rates/status/733109485275860992/photo/1,https://twitter.com/dog_rates/status/733109485275860992/photo/1 | 12 | 10 | None | doggo | None | pupper | None |
| 779 | 775842724423557120 | NaN | NaN | 2016-09-13 23:44:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775842724423557120/photo/1,https://twitter.com/dog_rates/status/775842724423557120/photo/1 | 12 | 10 | Blue | None | None | None | None |
| 780 | 775733305207554048 | NaN | NaN | 2016-09-13 16:30:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775733305207554048/photo/1 | 11 | 10 | Anakin | doggo | None | None | None |
| 781 | 775729183532220416 | NaN | NaN | 2016-09-13 16:13:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775729183532220416/photo/1 | 13 | 10 | None | None | None | None | None |
| 782 | 775364825476165632 | NaN | NaN | 2016-09-12 16:05:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1,https://twitter.com/dog_rates/status/775364825476165632/photo/1 | 11 | 10 | Finley | doggo | None | None | None |
| 783 | 775350846108426240 | NaN | NaN | 2016-09-12 15:10:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou | NaN | NaN | NaN | https://vine.co/v/ijmv0PD0XXD | 12 | 10 | Maximus | None | None | None | None |
| 784 | 775096608509886464 | NaN | NaN | 2016-09-11 22:20:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https:/… | 7.403732e+17 | 4.196984e+09 | 2016-06-08 02:41:38 +0000 | https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 | 9 | 11 | None | None | None | None | None |
| 785 | 775085132600442880 | NaN | NaN | 2016-09-11 21:34:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775085132600442880/photo/1 | 13 | 10 | Tucker | None | None | None | None |
| 786 | 774757898236878852 | NaN | NaN | 2016-09-10 23:54:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774757898236878852/photo/1 | 12 | 10 | Finley | None | None | None | None |
| 787 | 774639387460112384 | NaN | NaN | 2016-09-10 16:03:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774639387460112384/photo/1,https://twitter.com/dog_rates/status/774639387460112384/photo/1 | 10 | 10 | Sprinkles | None | None | None | None |
| 788 | 774314403806253056 | NaN | NaN | 2016-09-09 18:31:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1,https://twitter.com/dog_rates/status/774314403806253056/photo/1 | 14 | 10 | None | None | None | None | None |
| 789 | 773985732834758656 | NaN | NaN | 2016-09-08 20:45:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1,https://twitter.com/dog_rates/status/773985732834758656/photo/1 | 11 | 10 | Winnie | None | None | pupper | None |
| 790 | 773922284943896577 | NaN | NaN | 2016-09-08 16:33:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773922284943896577/photo/1 | 12 | 10 | Heinrich | None | None | None | None |
| 791 | 773704687002451968 | NaN | NaN | 2016-09-08 02:09:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773704687002451968/photo/1,https://twitter.com/dog_rates/status/773704687002451968/photo/1 | 12 | 10 | Loki | None | None | None | None |
| 792 | 773670353721753600 | NaN | NaN | 2016-09-07 23:52:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773670353721753600/photo/1 | 10 | 10 | Shakespeare | None | None | None | None |
| 793 | 773547596996571136 | NaN | NaN | 2016-09-07 15:44:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773547596996571136/photo/1 | 11 | 10 | Chelsea | None | None | pupper | None |
| 794 | 773336787167145985 | NaN | NaN | 2016-09-07 01:47:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https:/… | 7.713808e+17 | 4.196984e+09 | 2016-09-01 16:14:48 +0000 | https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 | 11 | 10 | Fizz | None | None | None | None |
| 795 | 773308824254029826 | NaN | NaN | 2016-09-06 23:56:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773308824254029826/photo/1 | 12 | 10 | Bungalo | None | None | None | None |
| 796 | 773247561583001600 | NaN | NaN | 2016-09-06 19:52:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773247561583001600/photo/1 | 10 | 10 | Chip | None | None | None | None |
| 797 | 773191612633579521 | NaN | NaN | 2016-09-06 16:10:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773191612633579521/photo/1,https://twitter.com/dog_rates/status/773191612633579521/photo/1 | 12 | 10 | Grey | None | None | None | None |
| 798 | 772877495989305348 | NaN | NaN | 2016-09-05 19:22:09 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772877495989305348/video/1 | 11 | 10 | None | None | None | None | None |
| 799 | 772826264096874500 | NaN | NaN | 2016-09-05 15:58:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772826264096874500/photo/1 | 11 | 10 | Roosevelt | None | None | None | None |
| 800 | 772615324260794368 | NaN | NaN | 2016-09-05 02:00:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH | 7.652221e+17 | 4.196984e+09 | 2016-08-15 16:22:20 +0000 | https://twitter.com/dog_rates/status/765222098633691136/photo/1,https://twitter.com/dog_rates/status/765222098633691136/photo/1 | 10 | 10 | Gromit | None | None | None | None |
| 801 | 772581559778025472 | NaN | NaN | 2016-09-04 23:46:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1,https://twitter.com/dog_rates/status/772581559778025472/photo/1 | 10 | 10 | a | None | None | None | None |
| 802 | 772193107915964416 | NaN | NaN | 2016-09-03 22:02:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772193107915964416/photo/1 | 12 | 10 | Willem | None | None | pupper | None |
| 803 | 772152991789019136 | NaN | NaN | 2016-09-03 19:23:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772152991789019136/photo/1,https://twitter.com/dog_rates/status/772152991789019136/photo/1 | 10 | 10 | None | None | None | None | None |
| 804 | 772117678702071809 | NaN | NaN | 2016-09-03 17:02:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772117678702071809/photo/1 | 12 | 10 | Jack | None | None | None | None |
| 805 | 772114945936949249 | NaN | NaN | 2016-09-03 16:52:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772114945936949249/photo/1 | 10 | 10 | Finn | None | None | None | None |
| 806 | 772102971039580160 | NaN | NaN | 2016-09-03 16:04:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772102971039580160/photo/1 | 11 | 10 | Penny | None | None | None | None |
| 807 | 771908950375665664 | NaN | NaN | 2016-09-03 03:13:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k | NaN | NaN | NaN | https://twitter.com/yahoonews/status/771905568600719360 | 13 | 10 | None | doggo | None | None | None |
| 808 | 771770456517009408 | NaN | NaN | 2016-09-02 18:03:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771770456517009408/photo/1 | 11 | 10 | Davey | None | None | None | None |
| 809 | 771500966810099713 | NaN | NaN | 2016-09-02 00:12:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771500966810099713/photo/1 | 12 | 10 | Dakota | None | None | None | None |
| 810 | 771380798096281600 | NaN | NaN | 2016-09-01 16:14:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1,https://twitter.com/dog_rates/status/771380798096281600/photo/1 | 11 | 10 | Fizz | None | None | None | None |
| 811 | 771171053431250945 | NaN | NaN | 2016-09-01 02:21:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf | 6.733201e+17 | 4.196984e+09 | 2015-12-06 01:56:44 +0000 | https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 | 11 | 10 | Frankie | None | None | None | None |
| 812 | 771136648247640064 | NaN | NaN | 2016-09-01 00:04:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771136648247640064/photo/1 | 11 | 10 | Dixie | None | None | None | None |
| 813 | 771102124360998913 | NaN | NaN | 2016-08-31 21:47:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771102124360998913/photo/1 | 12 | 10 | Charlie | None | None | None | None |
| 814 | 771014301343748096 | NaN | NaN | 2016-08-31 15:58:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771014301343748096/photo/1 | 7 | 10 | None | None | None | None | None |
| 815 | 771004394259247104 | NaN | NaN | 2016-08-31 15:19:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @katieornah: @dog_rates learning a lot at college 12/10 for my professor thank u for the pupper slides https://t.co/nTFDr99hg0 | 7.710021e+17 | 1.732729e+09 | 2016-08-31 15:10:07 +0000 | https://twitter.com/katieornah/status/771002130450743296/photo/1,https://twitter.com/katieornah/status/771002130450743296/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 816 | 770787852854652928 | NaN | NaN | 2016-08-31 00:58:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770787852854652928/photo/1 | 10 | 10 | Winston | None | None | None | None |
| 817 | 770772759874076672 | NaN | NaN | 2016-08-30 23:58:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770772759874076672/photo/1 | 11 | 10 | Sebastian | None | None | None | None |
| 818 | 770743923962707968 | NaN | NaN | 2016-08-30 22:04:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t… | 7.392382e+17 | 4.196984e+09 | 2016-06-04 23:31:25 +0000 | https://twitter.com/dog_rates/status/739238157791694849/video/1 | 13 | 10 | None | doggo | None | None | None |
| 819 | 770655142660169732 | NaN | NaN | 2016-08-30 16:11:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770655142660169732/photo/1 | 11 | 10 | very | None | None | None | None |
| 820 | 770414278348247044 | NaN | NaN | 2016-08-30 00:14:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770414278348247044/photo/1 | 11 | 10 | Al | None | None | None | None |
| 821 | 770293558247038976 | NaN | NaN | 2016-08-29 16:14:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770293558247038976/photo/1 | 10 | 10 | Jackson | None | None | None | None |
| 822 | 770093767776997377 | NaN | NaN | 2016-08-29 03:00:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | 7.410673e+17 | 4.196984e+09 | 2016-06-10 00:39:48 +0000 | https://twitter.com/dog_rates/status/741067306818797568/photo/1,https://twitter.com/dog_rates/status/741067306818797568/photo/1 | 12 | 10 | just | doggo | None | pupper | None |
| 823 | 770069151037685760 | NaN | NaN | 2016-08-29 01:22:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770069151037685760/photo/1 | 10 | 10 | Carbon | None | None | None | None |
| 824 | 769940425801170949 | NaN | NaN | 2016-08-28 16:51:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769940425801170949/photo/1,https://twitter.com/dog_rates/status/769940425801170949/photo/1 | 12 | 10 | Klein | None | None | None | None |
| 825 | 769695466921623552 | NaN | NaN | 2016-08-28 00:37:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769695466921623552/photo/1 | 13 | 10 | Titan | None | None | None | None |
| 826 | 769335591808995329 | NaN | NaN | 2016-08-27 00:47:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f | 7.069045e+17 | 4.196984e+09 | 2016-03-07 18:09:06 +0000 | https://vine.co/v/iXQAm5Lrgrh,https://vine.co/v/iXQAm5Lrgrh | 13 | 10 | None | None | None | None | None |
| 827 | 769212283578875904 | NaN | NaN | 2016-08-26 16:37:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769212283578875904/photo/1 | 12 | 10 | DonDon | None | None | None | None |
| 828 | 768970937022709760 | NaN | NaN | 2016-08-26 00:38:52 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768970937022709760/video/1 | 12 | 10 | Kirby | None | None | None | None |
| 829 | 768909767477751808 | NaN | NaN | 2016-08-25 20:35:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https:/… | 7.001438e+17 | 4.196984e+09 | 2016-02-18 02:24:13 +0000 | https://twitter.com/dog_rates/status/700143752053182464/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 830 | 768855141948723200 | NaN | NaN | 2016-08-25 16:58:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768855141948723200/photo/1 | 11 | 10 | Jesse | None | None | None | None |
| 831 | 768609597686943744 | NaN | NaN | 2016-08-25 00:43:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768609597686943744/photo/1 | 10 | 10 | Lou | None | None | None | None |
| 832 | 768596291618299904 | NaN | NaN | 2016-08-24 23:50:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768596291618299904/photo/1 | 12 | 10 | Oakley | None | None | None | None |
| 833 | 768554158521745409 | NaN | NaN | 2016-08-24 21:02:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.c… | 7.399792e+17 | 4.196984e+09 | 2016-06-07 00:36:02 +0000 | https://twitter.com/dog_rates/status/739979191639244800/photo/1 | 12 | 10 | Nollie | None | None | None | None |
| 834 | 768473857036525572 | NaN | NaN | 2016-08-24 15:43:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768473857036525572/photo/1 | 11 | 10 | Chevy | None | None | None | None |
| 835 | 768193404517830656 | NaN | NaN | 2016-08-23 21:09:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768193404517830656/photo/1 | 8 | 10 | Gerald | doggo | None | None | None |
| 836 | 767884188863397888 | NaN | NaN | 2016-08-23 00:40:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1,https://twitter.com/dog_rates/status/767884188863397888/photo/1 | 10 | 10 | Tito | None | None | None | None |
| 837 | 767754930266464257 | NaN | NaN | 2016-08-22 16:06:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767754930266464257/photo/1 | 11 | 10 | Philbert | None | None | None | None |
| 838 | 767500508068192258 | NaN | NaN | 2016-08-21 23:15:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767500508068192258/photo/1 | 12 | 10 | Louie | None | None | None | None |
| 839 | 767191397493538821 | NaN | NaN | 2016-08-21 02:47:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767191397493538821/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 840 | 767122157629476866 | NaN | NaN | 2016-08-20 22:12:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767122157629476866/photo/1,https://twitter.com/dog_rates/status/767122157629476866/photo/1 | 13 | 10 | Rupert | None | None | None | None |
| 841 | 766864461642756096 | NaN | NaN | 2016-08-20 05:08:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https:/… | 7.599238e+17 | 4.196984e+09 | 2016-08-01 01:28:46 +0000 | https://twitter.com/dog_rates/status/759923798737051648/photo/1 | 10 | 10 | None | None | None | None | None |
| 842 | 766793450729734144 | NaN | NaN | 2016-08-20 00:26:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766793450729734144/photo/1 | 10 | 10 | Rufus | None | None | None | None |
| 843 | 766714921925144576 | 7.667118e+17 | 4.196984e+09 | 2016-08-19 19:14:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 844 | 766693177336135680 | NaN | NaN | 2016-08-19 17:47:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766693177336135680/photo/1 | 11 | 10 | Brudge | None | None | None | None |
| 845 | 766423258543644672 | NaN | NaN | 2016-08-18 23:55:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766423258543644672/photo/1,https://twitter.com/dog_rates/status/766423258543644672/photo/1 | 9 | 10 | Shadoe | None | None | None | None |
| 846 | 766313316352462849 | NaN | NaN | 2016-08-18 16:38:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766313316352462849/photo/1 | 12 | 10 | Oscar | None | None | None | None |
| 847 | 766078092750233600 | NaN | NaN | 2016-08-18 01:03:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH | 7.258423e+17 | 4.196984e+09 | 2016-04-29 00:21:01 +0000 | https://twitter.com/dog_rates/status/725842289046749185/photo/1,https://twitter.com/dog_rates/status/725842289046749185/photo/1 | 12 | 10 | Colby | None | None | None | None |
| 848 | 766069199026450432 | NaN | NaN | 2016-08-18 00:28:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766069199026450432/photo/1 | 12 | 10 | Juno | None | None | None | None |
| 849 | 766008592277377025 | NaN | NaN | 2016-08-17 20:27:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766008592277377025/photo/1 | 11 | 10 | Angel | None | None | None | None |
| 850 | 765719909049503744 | NaN | NaN | 2016-08-17 01:20:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765719909049503744/photo/1 | 12 | 10 | Brat | None | None | None | None |
| 851 | 765669560888528897 | NaN | NaN | 2016-08-16 22:00:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1,https://twitter.com/dog_rates/status/765669560888528897/photo/1 | 12 | 10 | Tove | None | None | None | None |
| 852 | 765395769549590528 | NaN | NaN | 2016-08-16 03:52:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765395769549590528/photo/1 | 13 | 10 | my | None | None | None | None |
| 853 | 765371061932261376 | NaN | NaN | 2016-08-16 02:14:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765371061932261376/photo/1,https://twitter.com/dog_rates/status/765371061932261376/photo/1 | 11 | 10 | Louie | None | None | pupper | None |
| 854 | 765222098633691136 | NaN | NaN | 2016-08-15 16:22:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765222098633691136/photo/1 | 10 | 10 | Gromit | None | None | None | None |
| 855 | 764857477905154048 | NaN | NaN | 2016-08-14 16:13:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/764857477905154048/photo/1 | 12 | 10 | Aubie | None | None | None | None |
| 856 | 764259802650378240 | NaN | NaN | 2016-08-13 00:38:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/764259802650378240/photo/1,https://twitter.com/dog_rates/status/764259802650378240/photo/1 | 10 | 10 | Kota | None | None | None | None |
| 857 | 763956972077010945 | 7.638652e+17 | 1.584641e+07 | 2016-08-12 04:35:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | doggo | None | None | None |
| 858 | 763837565564780549 | NaN | NaN | 2016-08-11 20:40:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763837565564780549/photo/1 | 11 | 10 | Alfie | None | None | None | None |
| 859 | 763183847194451968 | NaN | NaN | 2016-08-10 01:23:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763183847194451968/photo/1 | 8 | 10 | Clark | None | None | None | None |
| 860 | 763167063695355904 | NaN | NaN | 2016-08-10 00:16:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https:/… | 6.732953e+17 | 4.196984e+09 | 2015-12-06 00:17:55 +0000 | https://twitter.com/dog_rates/status/673295268553605120/photo/1 | 8 | 10 | Eve | None | None | pupper | None |
| 861 | 763103485927849985 | NaN | NaN | 2016-08-09 20:03:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763103485927849985/photo/1,https://twitter.com/dog_rates/status/763103485927849985/photo/1 | 10 | 10 | Belle | None | None | None | None |
| 862 | 762699858130116608 | NaN | NaN | 2016-08-08 17:19:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762699858130116608/photo/1 | 11 | 10 | Leela | None | None | None | None |
| 863 | 762471784394268675 | NaN | NaN | 2016-08-08 02:13:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762471784394268675/video/1 | 12 | 10 | Glenn | None | None | None | None |
| 864 | 762464539388485633 | NaN | NaN | 2016-08-08 01:44:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1,https://twitter.com/dog_rates/status/762464539388485633/photo/1 | 12 | 10 | Buddy | None | None | None | None |
| 865 | 762316489655476224 | NaN | NaN | 2016-08-07 15:56:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762316489655476224/photo/1 | 11 | 10 | Scout | None | None | None | None |
| 866 | 762035686371364864 | NaN | NaN | 2016-08-06 21:20:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762035686371364864/video/1 | 14 | 10 | None | None | None | None | None |
| 867 | 761976711479193600 | NaN | NaN | 2016-08-06 17:26:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1,https://twitter.com/dog_rates/status/761976711479193600/photo/1 | 12 | 10 | Shelby | None | None | None | None |
| 868 | 761750502866649088 | NaN | NaN | 2016-08-06 02:27:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw | 6.853251e+17 | 4.196984e+09 | 2016-01-08 05:00:14 +0000 | https://twitter.com/dog_rates/status/685325112850124800/photo/1,https://twitter.com/dog_rates/status/685325112850124800/photo/1 | 10 | 10 | None | None | None | None | None |
| 869 | 761745352076779520 | NaN | NaN | 2016-08-06 02:06:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761745352076779520/photo/1 | 11 | 10 | None | None | None | None | None |
| 870 | 761672994376806400 | NaN | NaN | 2016-08-05 21:19:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761672994376806400/video/1 | 10 | 10 | None | None | None | None | None |
| 871 | 761599872357261312 | NaN | NaN | 2016-08-05 16:28:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761599872357261312/photo/1 | 11 | 10 | Sephie | None | None | None | None |
| 872 | 761371037149827077 | NaN | NaN | 2016-08-05 01:19:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ | 7.116948e+17 | 4.196984e+09 | 2016-03-20 23:23:54 +0000 | https://twitter.com/dog_rates/status/711694788429553666/photo/1,https://twitter.com/dog_rates/status/711694788429553666/photo/1 | 13 | 10 | None | None | None | None | None |
| 873 | 761334018830917632 | NaN | NaN | 2016-08-04 22:52:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761334018830917632/photo/1 | 10 | 10 | Bruce | None | None | None | None |
| 874 | 761292947749015552 | NaN | NaN | 2016-08-04 20:09:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761292947749015552/photo/1 | 11 | 10 | Bonaparte | None | None | None | None |
| 875 | 761227390836215808 | NaN | NaN | 2016-08-04 15:48:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761227390836215808/photo/1 | 10 | 10 | Albert | None | None | None | None |
| 876 | 761004547850530816 | NaN | NaN | 2016-08-04 01:03:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761004547850530816/photo/1 | 11 | 10 | Bo | None | None | None | None |
| 877 | 760893934457552897 | NaN | NaN | 2016-08-03 17:43:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760893934457552897/photo/1 | 11 | 10 | Wishes | doggo | None | None | None |
| 878 | 760656994973933572 | NaN | NaN | 2016-08-03 02:02:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760656994973933572/photo/1,https://twitter.com/dog_rates/status/760656994973933572/photo/1 | 11 | 10 | Rose | None | None | None | None |
| 879 | 760641137271070720 | NaN | NaN | 2016-08-03 00:59:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760641137271070720/photo/1 | 12 | 10 | Theo | None | None | None | None |
| 880 | 760539183865880579 | NaN | NaN | 2016-08-02 18:14:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1,https://twitter.com/dog_rates/status/760539183865880579/photo/1 | 12 | 10 | Atlas | None | None | None | None |
| 881 | 760521673607086080 | NaN | NaN | 2016-08-02 17:04:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 | NaN | NaN | NaN | https://vine.co/v/5ApKetxzmTB | 12 | 10 | None | doggo | None | None | None |
| 882 | 760290219849637889 | NaN | NaN | 2016-08-02 01:44:48 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760290219849637889/video/1 | 13 | 10 | Rocco | None | None | None | None |
| 883 | 760252756032651264 | NaN | NaN | 2016-08-01 23:15:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760252756032651264/photo/1 | 4 | 10 | Fido | None | None | None | None |
| 884 | 760190180481531904 | NaN | NaN | 2016-08-01 19:07:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760190180481531904/photo/1 | 10 | 10 | Sadie | None | None | None | None |
| 885 | 760153949710192640 | NaN | NaN | 2016-08-01 16:43:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @hownottodraw: The story/person behind @dog_rates is heckin adorable af. 11/10, probably would pet. https://t.co/AG5UnRrmzJ | 7.601538e+17 | 1.950368e+08 | 2016-08-01 16:42:51 +0000 | https://weratedogs.com/pages/about-us,https://weratedogs.com/pages/about-us | 11 | 10 | None | None | None | None | None |
| 886 | 759943073749200896 | NaN | NaN | 2016-08-01 02:45:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu | NaN | NaN | NaN | https://vine.co/v/5AJm5pq7Kav | 12 | 10 | None | None | None | pupper | None |
| 887 | 759923798737051648 | NaN | NaN | 2016-08-01 01:28:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759923798737051648/photo/1 | 10 | 10 | None | None | None | None | None |
| 888 | 759846353224826880 | NaN | NaN | 2016-07-31 20:21:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759846353224826880/photo/1 | 11 | 10 | Kirby | None | None | None | None |
| 889 | 759793422261743616 | NaN | NaN | 2016-07-31 16:50:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759793422261743616/photo/1,https://twitter.com/dog_rates/status/759793422261743616/photo/1 | 12 | 10 | Maggie | doggo | None | pupper | None |
| 890 | 759566828574212096 | NaN | NaN | 2016-07-31 01:50:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P | 7.395441e+17 | 4.196984e+09 | 2016-06-05 19:47:03 +0000 | https://twitter.com/dog_rates/status/739544079319588864/photo/1,https://twitter.com/dog_rates/status/739544079319588864/photo/1 | 10 | 10 | None | None | None | None | None |
| 891 | 759557299618865152 | NaN | NaN | 2016-07-31 01:12:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1,https://twitter.com/dog_rates/status/759557299618865152/photo/1 | 10 | 10 | Emma | None | None | None | None |
| 892 | 759447681597108224 | NaN | NaN | 2016-07-30 17:56:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759447681597108224/photo/1 | 11 | 10 | Oakley | None | None | None | None |
| 893 | 759446261539934208 | NaN | NaN | 2016-07-30 17:51:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A | NaN | NaN | NaN | https://twitter.com/wsaznews/status/759167558763196416 | 10 | 10 | None | None | None | None | None |
| 894 | 759197388317847553 | NaN | NaN | 2016-07-30 01:22:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1,https://twitter.com/dog_rates/status/759197388317847553/photo/1 | 12 | 10 | Luna | None | None | None | None |
| 895 | 759159934323924993 | NaN | NaN | 2016-07-29 22:53:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA | 6.703191e+17 | 4.196984e+09 | 2015-11-27 19:11:49 +0000 | https://twitter.com/dog_rates/status/670319130621435904/photo/1,https://twitter.com/dog_rates/status/670319130621435904/photo/1 | 11 | 10 | None | None | None | None | None |
| 896 | 759099523532779520 | NaN | NaN | 2016-07-29 18:53:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759099523532779520/photo/1 | 7 | 10 | Toby | None | None | None | None |
| 897 | 759047813560868866 | NaN | NaN | 2016-07-29 15:27:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759047813560868866/photo/1,https://twitter.com/dog_rates/status/759047813560868866/photo/1 | 11 | 10 | Spencer | None | None | None | None |
| 898 | 758854675097526272 | NaN | NaN | 2016-07-29 02:40:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lilli Bee & Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1,https://twitter.com/dog_rates/status/758854675097526272/photo/1 | 11 | 10 | Lilli | None | None | None | None |
| 899 | 758828659922702336 | NaN | NaN | 2016-07-29 00:57:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758828659922702336/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 900 | 758740312047005698 | NaN | NaN | 2016-07-28 19:06:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758740312047005698/photo/1 | 12 | 10 | Boston | None | None | None | None |
| 901 | 758474966123810816 | NaN | NaN | 2016-07-28 01:31:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758474966123810816/photo/1 | 11 | 10 | Brandonald | None | None | None | None |
| 902 | 758467244762497024 | NaN | NaN | 2016-07-28 01:00:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758467244762497024/video/1 | 165 | 150 | None | None | None | None | None |
| 903 | 758405701903519748 | NaN | NaN | 2016-07-27 20:56:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1,https://twitter.com/dog_rates/status/758405701903519748/photo/1 | 10 | 10 | Odie | None | None | None | None |
| 904 | 758355060040593408 | NaN | NaN | 2016-07-27 17:35:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758355060040593408/photo/1 | 11 | 10 | Corey | None | None | None | None |
| 905 | 758099635764359168 | NaN | NaN | 2016-07-27 00:40:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE | NaN | NaN | NaN | https://vine.co/v/hQJbaj1VpIz | 13 | 10 | None | None | None | None | None |
| 906 | 758041019896193024 | NaN | NaN | 2016-07-26 20:47:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758041019896193024/photo/1 | 9 | 10 | None | None | None | None | None |
| 907 | 757741869644341248 | NaN | NaN | 2016-07-26 00:58:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757741869644341248/photo/1,https://twitter.com/dog_rates/status/757741869644341248/photo/1 | 10 | 10 | Leonard | None | None | None | None |
| 908 | 757729163776290825 | NaN | NaN | 2016-07-26 00:08:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 | 6.790626e+17 | 4.196984e+09 | 2015-12-21 22:15:18 +0000 | https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 | 11 | 10 | Chompsky | None | None | None | None |
| 909 | 757725642876129280 | NaN | NaN | 2016-07-25 23:54:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757725642876129280/photo/1,https://twitter.com/dog_rates/status/757725642876129280/photo/1 | 11 | 10 | Beckham | None | None | None | None |
| 910 | 757611664640446465 | NaN | NaN | 2016-07-25 16:21:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1,https://twitter.com/dog_rates/status/757611664640446465/photo/1 | 12 | 10 | Cooper | None | None | None | None |
| 911 | 757597904299253760 | NaN | NaN | 2016-07-25 15:26:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @jon_hill987: @dog_rates There is a cunningly disguised pupper here mate! 11/10 at least. https://t.co/7boff8zojZ | 7.575971e+17 | 2.804798e+08 | 2016-07-25 15:23:28 +0000 | https://twitter.com/jon_hill987/status/757597141099548672/photo/1,https://twitter.com/jon_hill987/status/757597141099548672/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 912 | 757596066325864448 | NaN | NaN | 2016-07-25 15:19:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757596066325864448/photo/1 | 4 | 10 | None | None | None | None | None |
| 913 | 757400162377592832 | NaN | NaN | 2016-07-25 02:20:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1,https://twitter.com/dog_rates/status/757400162377592832/photo/1 | 13 | 10 | None | None | None | None | None |
| 914 | 757393109802180609 | NaN | NaN | 2016-07-25 01:52:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1,https://twitter.com/dog_rates/status/757393109802180609/photo/1 | 10 | 10 | None | doggo | None | None | None |
| 915 | 757354760399941633 | NaN | NaN | 2016-07-24 23:20:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757354760399941633/photo/1,https://twitter.com/dog_rates/status/757354760399941633/photo/1 | 8 | 10 | Devón | None | None | None | None |
| 916 | 756998049151549440 | NaN | NaN | 2016-07-23 23:42:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1,https://twitter.com/dog_rates/status/756998049151549440/photo/1 | 11 | 10 | Oliver | None | None | None | None |
| 917 | 756939218950160384 | NaN | NaN | 2016-07-23 19:49:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756939218950160384/photo/1 | 12 | 10 | Jax | None | None | pupper | None |
| 918 | 756651752796094464 | NaN | NaN | 2016-07-23 00:46:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756651752796094464/photo/1 | 11 | 10 | Gert | None | None | None | None |
| 919 | 756526248105566208 | NaN | NaN | 2016-07-22 16:28:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756526248105566208/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 920 | 756303284449767430 | NaN | NaN | 2016-07-22 01:42:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756303284449767430/photo/1 | 11 | 10 | None | None | None | None | None |
| 921 | 756288534030475264 | NaN | NaN | 2016-07-22 00:43:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1,https://twitter.com/dog_rates/status/756288534030475264/photo/1 | 12 | 10 | None | None | None | None | None |
| 922 | 756275833623502848 | NaN | NaN | 2016-07-21 23:53:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756275833623502848/photo/1,https://twitter.com/dog_rates/status/756275833623502848/photo/1 | 10 | 10 | None | None | None | None | puppo |
| 923 | 755955933503782912 | NaN | NaN | 2016-07-21 02:41:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755955933503782912/video/1 | 12 | 10 | None | None | None | pupper | None |
| 924 | 755206590534418437 | NaN | NaN | 2016-07-19 01:04:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1,https://twitter.com/dog_rates/status/755206590534418437/photo/1 | 14 | 10 | one | doggo | None | None | None |
| 925 | 755110668769038337 | NaN | NaN | 2016-07-18 18:43:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755110668769038337/video/1 | 13 | 10 | Watson | None | None | None | None |
| 926 | 754874841593970688 | NaN | NaN | 2016-07-18 03:06:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag | 6.791584e+17 | 4.196984e+09 | 2015-12-22 04:35:49 +0000 | https://twitter.com/dog_rates/status/679158373988876288/photo/1,https://twitter.com/dog_rates/status/679158373988876288/photo/1 | 11 | 10 | Rubio | None | None | None | None |
| 927 | 754856583969079297 | NaN | NaN | 2016-07-18 01:53:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1,https://twitter.com/dog_rates/status/754856583969079297/photo/1 | 11 | 10 | Winnie | None | None | None | None |
| 928 | 754747087846248448 | NaN | NaN | 2016-07-17 18:38:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754747087846248448/photo/1 | 12 | 10 | Keith | None | None | None | None |
| 929 | 754482103782404096 | NaN | NaN | 2016-07-17 01:05:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754482103782404096/video/1 | 10 | 10 | Milo | None | None | None | None |
| 930 | 754449512966619136 | NaN | NaN | 2016-07-16 22:55:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754449512966619136/photo/1 | 11 | 10 | Dex | None | None | None | None |
| 931 | 754120377874386944 | NaN | NaN | 2016-07-16 01:08:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754120377874386944/photo/1 | 10 | 10 | None | None | None | None | None |
| 932 | 754011816964026368 | NaN | NaN | 2016-07-15 17:56:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754011816964026368/photo/1,https://twitter.com/dog_rates/status/754011816964026368/photo/1 | 12 | 10 | Charlie | None | None | None | None |
| 933 | 753655901052166144 | NaN | NaN | 2016-07-14 18:22:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753655901052166144/photo/1 | 10 | 10 | None | None | None | None | None |
| 934 | 753420520834629632 | NaN | NaN | 2016-07-14 02:47:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753420520834629632/video/1 | 11 | 10 | None | None | None | None | None |
| 935 | 753398408988139520 | NaN | NaN | 2016-07-14 01:19:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753398408988139520/video/1 | 12 | 10 | Scout | None | None | None | None |
| 936 | 753375668877008896 | NaN | NaN | 2016-07-13 23:48:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753375668877008896/photo/1 | 8 | 10 | Hank | None | None | None | None |
| 937 | 753298634498793472 | NaN | NaN | 2016-07-13 18:42:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https:/… | 6.815232e+17 | 4.196984e+09 | 2015-12-28 17:12:42 +0000 | https://twitter.com/dog_rates/status/681523177663676416/photo/1 | 12 | 10 | Carly | None | None | None | None |
| 938 | 753294487569522689 | NaN | NaN | 2016-07-13 18:26:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753294487569522689/photo/1 | 11 | 10 | Ace | None | None | None | None |
| 939 | 753039830821511168 | NaN | NaN | 2016-07-13 01:34:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 | NaN | NaN | NaN | https://vine.co/v/5W2Dg3XPX7a | 13 | 10 | None | None | None | None | None |
| 940 | 753026973505581056 | NaN | NaN | 2016-07-13 00:43:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1,https://twitter.com/dog_rates/status/753026973505581056/photo/1 | 10 | 10 | Tayzie | None | None | None | None |
| 941 | 752932432744185856 | NaN | NaN | 2016-07-12 18:27:35 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc | NaN | NaN | NaN | https://vine.co/v/OEppMFbejFz | 12 | 10 | Carl | None | None | None | None |
| 942 | 752917284578922496 | NaN | NaN | 2016-07-12 17:27:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752917284578922496/photo/1 | 11 | 10 | Grizzie | None | None | None | None |
| 943 | 752701944171524096 | NaN | NaN | 2016-07-12 03:11:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z | 6.835159e+17 | 4.196984e+09 | 2016-01-03 05:11:12 +0000 | https://vine.co/v/ibvnzrauFuV,https://vine.co/v/ibvnzrauFuV | 11 | 10 | None | None | None | None | None |
| 944 | 752682090207055872 | NaN | NaN | 2016-07-12 01:52:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752682090207055872/photo/1,https://twitter.com/dog_rates/status/752682090207055872/photo/1 | 10 | 10 | None | doggo | None | None | None |
| 945 | 752660715232722944 | NaN | NaN | 2016-07-12 00:27:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752660715232722944/photo/1,https://twitter.com/dog_rates/status/752660715232722944/photo/1 | 10 | 10 | None | doggo | None | None | None |
| 946 | 752568224206688256 | NaN | NaN | 2016-07-11 18:20:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ | NaN | NaN | NaN | https://vine.co/v/5W0bdhEUUVT | 9 | 10 | None | None | None | None | None |
| 947 | 752519690950500352 | NaN | NaN | 2016-07-11 15:07:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1,https://twitter.com/dog_rates/status/752519690950500352/photo/1 | 11 | 10 | None | None | None | None | puppo |
| 948 | 752334515931054080 | NaN | NaN | 2016-07-11 02:51:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752334515931054080/video/1 | 8 | 10 | None | doggo | None | None | None |
| 949 | 752309394570878976 | NaN | NaN | 2016-07-11 01:11:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC | 6.753544e+17 | 4.196984e+09 | 2015-12-11 16:40:19 +0000 | https://twitter.com/dog_rates/status/675354435921575936/video/1,https://twitter.com/dog_rates/status/675354435921575936/video/1 | 13 | 10 | None | None | None | None | None |
| 950 | 752173152931807232 | NaN | NaN | 2016-07-10 16:10:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752173152931807232/photo/1,https://twitter.com/dog_rates/status/752173152931807232/photo/1 | 12 | 10 | Brody | None | None | None | None |
| 951 | 751950017322246144 | NaN | NaN | 2016-07-10 01:23:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV | NaN | NaN | NaN | https://vine.co/v/5WrjaYAMvMO | 13 | 10 | Lola | None | None | pupper | None |
| 952 | 751937170840121344 | NaN | NaN | 2016-07-10 00:32:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751937170840121344/photo/1 | 11 | 10 | Ruby | None | None | None | None |
| 953 | 751830394383790080 | NaN | NaN | 2016-07-09 17:28:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1,https://twitter.com/dog_rates/status/751830394383790080/photo/1 | 12 | 10 | Tucker | None | None | None | None |
| 954 | 751793661361422336 | NaN | NaN | 2016-07-09 15:02:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 | NaN | NaN | NaN | https://vine.co/v/5W5YHdTJvaV | 11 | 10 | Fred | None | None | None | None |
| 955 | 751598357617971201 | NaN | NaN | 2016-07-09 02:06:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1,https://twitter.com/dog_rates/status/751598357617971201/photo/1 | 13 | 10 | Toby | None | None | None | None |
| 956 | 751583847268179968 | NaN | NaN | 2016-07-09 01:08:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751583847268179968/photo/1 | 5 | 10 | None | doggo | None | pupper | None |
| 957 | 751538714308972544 | NaN | NaN | 2016-07-08 22:09:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1,https://twitter.com/dog_rates/status/751538714308972544/photo/1 | 10 | 10 | Max | None | None | None | None |
| 958 | 751456908746354688 | NaN | NaN | 2016-07-08 16:44:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751456908746354688/video/1 | 12 | 10 | None | None | None | pupper | None |
| 959 | 751251247299190784 | NaN | NaN | 2016-07-08 03:07:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751251247299190784/video/1 | 10 | 10 | Gilbert | None | None | None | None |
| 960 | 751205363882532864 | NaN | NaN | 2016-07-08 00:04:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751205363882532864/photo/1,https://twitter.com/dog_rates/status/751205363882532864/photo/1 | 12 | 10 | None | None | None | None | None |
| 961 | 751132876104687617 | NaN | NaN | 2016-07-07 19:16:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751132876104687617/photo/1,https://twitter.com/dog_rates/status/751132876104687617/photo/1 | 10 | 10 | Cooper | None | None | None | puppo |
| 962 | 750868782890057730 | NaN | NaN | 2016-07-07 01:47:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1,https://twitter.com/dog_rates/status/750868782890057730/photo/1 | 11 | 10 | Milo | None | None | pupper | None |
| 963 | 750719632563142656 | NaN | NaN | 2016-07-06 15:54:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750719632563142656/photo/1 | 12 | 10 | Meyer | None | None | None | None |
| 964 | 750506206503038976 | NaN | NaN | 2016-07-06 01:46:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750506206503038976/photo/1 | 8 | 10 | Malcolm | None | None | pupper | None |
| 965 | 750429297815552001 | NaN | NaN | 2016-07-05 20:41:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750429297815552001/photo/1,https://twitter.com/dog_rates/status/750429297815552001/photo/1 | 12 | 10 | Arnie | None | None | None | None |
| 966 | 750383411068534784 | NaN | NaN | 2016-07-05 17:38:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750383411068534784/photo/1 | 9 | 10 | Zoe | None | None | pupper | None |
| 967 | 750381685133418496 | 7.501805e+17 | 4.717297e+09 | 2016-07-05 17:31:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13/10 such a good doggo\n@spaghemily | NaN | NaN | NaN | NaN | 13 | 10 | None | doggo | None | None | None |
| 968 | 750147208377409536 | NaN | NaN | 2016-07-05 02:00:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750147208377409536/photo/1 | 13 | 10 | None | None | None | None | None |
| 969 | 750132105863102464 | NaN | NaN | 2016-07-05 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750132105863102464/photo/1 | 11 | 10 | Stewie | None | None | None | None |
| 970 | 750117059602808832 | NaN | NaN | 2016-07-05 00:00:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1,https://twitter.com/dog_rates/status/750117059602808832/photo/1 | 10 | 10 | Calvin | None | None | None | None |
| 971 | 750101899009982464 | NaN | NaN | 2016-07-04 23:00:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750101899009982464/photo/1,https://twitter.com/dog_rates/status/750101899009982464/photo/1 | 11 | 10 | Lilah | None | None | None | None |
| 972 | 750086836815486976 | NaN | NaN | 2016-07-04 22:00:12 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750086836815486976/photo/1 | 12 | 10 | Spanky | None | None | None | None |
| 973 | 750071704093859840 | NaN | NaN | 2016-07-04 21:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1,https://twitter.com/dog_rates/status/750071704093859840/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 974 | 750056684286914561 | NaN | NaN | 2016-07-04 20:00:23 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750056684286914561/photo/1 | 11 | 10 | Jameson | None | None | None | None |
| 975 | 750041628174217216 | NaN | NaN | 2016-07-04 19:00:33 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750041628174217216/photo/1 | 13 | 10 | Beau | None | None | None | None |
| 976 | 750026558547456000 | NaN | NaN | 2016-07-04 18:00:41 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750026558547456000/photo/1 | 10 | 10 | Jax | None | None | None | None |
| 977 | 750011400160841729 | NaN | NaN | 2016-07-04 17:00:26 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750011400160841729/photo/1 | 11 | 10 | Piper | doggo | None | None | None |
| 978 | 749996283729883136 | NaN | NaN | 2016-07-04 16:00:22 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749996283729883136/photo/1 | 12 | 10 | Bo | None | None | None | None |
| 979 | 749981277374128128 | NaN | NaN | 2016-07-04 15:00:45 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749981277374128128/photo/1 | 1776 | 10 | Atticus | None | None | None | None |
| 980 | 749774190421639168 | NaN | NaN | 2016-07-04 01:17:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749774190421639168/photo/1 | 12 | 10 | Lucy | None | None | None | None |
| 981 | 749417653287129088 | NaN | NaN | 2016-07-03 01:41:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1,https://twitter.com/dog_rates/status/749417653287129088/photo/1 | 11 | 10 | Finn | None | None | pupper | None |
| 982 | 749403093750648834 | NaN | NaN | 2016-07-03 00:43:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749403093750648834/photo/1 | 10 | 10 | None | None | None | None | None |
| 983 | 749395845976588288 | NaN | NaN | 2016-07-03 00:14:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749395845976588288/photo/1,https://twitter.com/dog_rates/status/749395845976588288/photo/1 | 10 | 10 | George | None | None | None | None |
| 984 | 749317047558017024 | NaN | NaN | 2016-07-02 19:01:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749317047558017024/video/1 | 12 | 10 | Blu | None | floofer | None | None |
| 985 | 749075273010798592 | NaN | NaN | 2016-07-02 03:00:36 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o | NaN | NaN | NaN | https://vine.co/v/5ztZvHgI17r | 11 | 10 | Boomer | doggo | None | None | None |
| 986 | 749064354620928000 | NaN | NaN | 2016-07-02 02:17:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749064354620928000/photo/1,https://twitter.com/dog_rates/status/749064354620928000/photo/1 | 11 | 10 | Winston | None | None | None | None |
| 987 | 749036806121881602 | NaN | NaN | 2016-07-02 00:27:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749036806121881602/photo/1 | 8 | 10 | Dietrich | None | None | None | None |
| 988 | 748977405889503236 | NaN | NaN | 2016-07-01 20:31:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748977405889503236/photo/1 | 10 | 10 | not | None | None | None | None |
| 989 | 748932637671223296 | NaN | NaN | 2016-07-01 17:33:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748932637671223296/photo/1 | 13 | 10 | Divine | doggo | None | None | None |
| 990 | 748705597323898880 | NaN | NaN | 2016-07-01 02:31:39 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748705597323898880/video/1 | 13 | 10 | None | None | None | None | None |
| 991 | 748699167502000129 | NaN | NaN | 2016-07-01 02:06:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748699167502000129/photo/1,https://twitter.com/dog_rates/status/748699167502000129/photo/1 | 11 | 10 | Tripp | None | None | None | None |
| 992 | 748692773788876800 | NaN | NaN | 2016-07-01 01:40:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748692773788876800/photo/1 | 10 | 10 | his | doggo | None | None | None |
| 993 | 748575535303884801 | NaN | NaN | 2016-06-30 17:54:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748575535303884801/photo/1 | 6 | 10 | one | None | None | None | None |
| 994 | 748568946752774144 | NaN | NaN | 2016-06-30 17:28:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748568946752774144/video/1 | 12 | 10 | Cora | None | None | None | None |
| 995 | 748346686624440324 | NaN | NaN | 2016-06-30 02:45:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748346686624440324/photo/1 | 10 | 10 | None | None | None | None | None |
| 996 | 748337862848962560 | NaN | NaN | 2016-06-30 02:10:24 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy | NaN | NaN | NaN | https://vine.co/v/h5aDaFthX6O | 13 | 10 | None | None | None | pupper | None |
| 997 | 748324050481647620 | NaN | NaN | 2016-06-30 01:15:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748324050481647620/photo/1,https://twitter.com/dog_rates/status/748324050481647620/photo/1 | 11 | 10 | Duke | None | None | None | None |
| 998 | 748307329658011649 | NaN | NaN | 2016-06-30 00:09:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748307329658011649/photo/1,https://twitter.com/dog_rates/status/748307329658011649/photo/1 | 7 | 10 | None | None | None | None | None |
| 999 | 748220828303695873 | NaN | NaN | 2016-06-29 18:25:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH | NaN | NaN | NaN | https://vine.co/v/iiLjKuYJpr6 | 13 | 10 | None | None | None | None | None |
| 1000 | 747963614829678593 | NaN | NaN | 2016-06-29 01:23:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747963614829678593/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1001 | 747933425676525569 | NaN | NaN | 2016-06-28 23:23:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1,https://twitter.com/dog_rates/status/747933425676525569/photo/1 | 11 | 10 | None | None | None | None | None |
| 1002 | 747885874273214464 | NaN | NaN | 2016-06-28 20:14:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747885874273214464/photo/1,https://twitter.com/dog_rates/status/747885874273214464/photo/1 | 8 | 10 | a | None | None | None | None |
| 1003 | 747844099428986880 | NaN | NaN | 2016-06-28 17:28:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747844099428986880/photo/1 | 11 | 10 | Huxley | None | None | None | None |
| 1004 | 747816857231626240 | NaN | NaN | 2016-06-28 15:40:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747816857231626240/photo/1 | 4 | 10 | a | None | None | None | None |
| 1005 | 747651430853525504 | 7.476487e+17 | 4.196984e+09 | 2016-06-28 04:42:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | pupper | None |
| 1006 | 747648653817413632 | NaN | NaN | 2016-06-28 04:31:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M | NaN | NaN | NaN | https://vine.co/v/iqIZFtOxEMB | 12 | 10 | Keurig | None | None | None | None |
| 1007 | 747600769478692864 | NaN | NaN | 2016-06-28 01:21:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747600769478692864/photo/1,https://twitter.com/dog_rates/status/747600769478692864/photo/1 | 10 | 10 | Bookstore | None | None | None | None |
| 1008 | 747594051852075008 | NaN | NaN | 2016-06-28 00:54:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747594051852075008/photo/1 | 11 | 10 | None | None | None | None | None |
| 1009 | 747512671126323200 | NaN | NaN | 2016-06-27 19:31:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747512671126323200/photo/1 | 10 | 10 | None | None | None | None | None |
| 1010 | 747461612269887489 | NaN | NaN | 2016-06-27 16:08:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747461612269887489/photo/1 | 10 | 10 | None | None | None | None | None |
| 1011 | 747439450712596480 | NaN | NaN | 2016-06-27 14:40:26 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR | NaN | NaN | NaN | https://vine.co/v/5uTVXWvn3Ip | 12 | 10 | Linus | None | None | None | None |
| 1012 | 747242308580548608 | NaN | NaN | 2016-06-27 01:37:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://… | 7.047611e+17 | 4.196984e+09 | 2016-03-01 20:11:59 +0000 | https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1013 | 747219827526344708 | NaN | NaN | 2016-06-27 00:07:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747219827526344708/photo/1,https://twitter.com/dog_rates/status/747219827526344708/photo/1 | 11 | 10 | Atticus | None | None | None | None |
| 1014 | 747204161125646336 | NaN | NaN | 2016-06-26 23:05:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747204161125646336/photo/1,https://twitter.com/dog_rates/status/747204161125646336/photo/1 | 10 | 10 | Clark | None | None | None | None |
| 1015 | 747103485104099331 | NaN | NaN | 2016-06-26 16:25:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1,https://twitter.com/dog_rates/status/747103485104099331/photo/1 | 11 | 10 | None | None | None | None | None |
| 1016 | 746906459439529985 | 7.468859e+17 | 4.196984e+09 | 2016-06-26 03:22:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746906459439529985/photo/1 | 0 | 10 | None | None | None | None | None |
| 1017 | 746872823977771008 | NaN | NaN | 2016-06-26 01:08:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746872823977771008/photo/1,https://twitter.com/dog_rates/status/746872823977771008/photo/1 | 11 | 10 | a | None | None | None | None |
| 1018 | 746818907684614144 | 6.914169e+17 | 4.196984e+09 | 2016-06-25 21:34:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746818907684614144/photo/1 | 13 | 10 | None | None | None | None | None |
| 1019 | 746790600704425984 | NaN | NaN | 2016-06-25 19:42:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1,https://twitter.com/dog_rates/status/746790600704425984/photo/1 | 10 | 10 | None | None | None | None | None |
| 1020 | 746757706116112384 | NaN | NaN | 2016-06-25 17:31:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u | NaN | NaN | NaN | https://vine.co/v/5BYq6hmrEI3 | 11 | 10 | Maddie | None | None | None | None |
| 1021 | 746726898085036033 | NaN | NaN | 2016-06-25 15:29:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746726898085036033/photo/1 | 12 | 10 | Abby | None | None | None | None |
| 1022 | 746542875601690625 | NaN | NaN | 2016-06-25 03:17:46 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd | NaN | NaN | NaN | https://vine.co/v/5uZYwqmuDeT | 11 | 10 | None | None | floofer | None | None |
| 1023 | 746521445350707200 | NaN | NaN | 2016-06-25 01:52:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https:/… | 6.678667e+17 | 4.196984e+09 | 2015-11-21 00:46:50 +0000 | https://twitter.com/dog_rates/status/667866724293877760/photo/1 | 10 | 10 | Shaggy | None | None | None | None |
| 1024 | 746507379341139972 | NaN | NaN | 2016-06-25 00:56:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746507379341139972/photo/1,https://twitter.com/dog_rates/status/746507379341139972/photo/1 | 10 | 10 | Shiloh | None | None | None | None |
| 1025 | 746369468511756288 | NaN | NaN | 2016-06-24 15:48:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746369468511756288/photo/1 | 9 | 10 | an | None | None | None | None |
| 1026 | 746131877086527488 | NaN | NaN | 2016-06-24 00:04:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746131877086527488/photo/1 | 10 | 10 | Gustav | None | None | None | None |
| 1027 | 746056683365994496 | NaN | NaN | 2016-06-23 19:05:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746056683365994496/photo/1,https://twitter.com/dog_rates/status/746056683365994496/photo/1 | 11 | 10 | Arlen | None | None | None | None |
| 1028 | 745789745784041472 | NaN | NaN | 2016-06-23 01:25:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745789745784041472/photo/1 | 10 | 10 | Gus | None | None | None | None |
| 1029 | 745712589599014916 | NaN | NaN | 2016-06-22 20:18:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745712589599014916/photo/1 | 7 | 10 | Percy | None | None | None | None |
| 1030 | 745433870967832576 | NaN | NaN | 2016-06-22 01:50:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1,https://twitter.com/dog_rates/status/745433870967832576/photo/1 | 10 | 10 | Lenox | doggo | None | None | None |
| 1031 | 745422732645535745 | NaN | NaN | 2016-06-22 01:06:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745422732645535745/photo/1 | 9 | 10 | very | None | None | None | None |
| 1032 | 745314880350101504 | NaN | NaN | 2016-06-21 17:58:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1,https://twitter.com/dog_rates/status/745314880350101504/photo/1 | 12 | 10 | Sugar | None | None | None | None |
| 1033 | 745074613265149952 | NaN | NaN | 2016-06-21 02:03:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh | NaN | NaN | NaN | https://vine.co/v/iQm3JAXuFmv | 11 | 10 | Jeffrey | None | None | None | None |
| 1034 | 745057283344719872 | NaN | NaN | 2016-06-21 00:54:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745057283344719872/photo/1,https://twitter.com/dog_rates/status/745057283344719872/photo/1 | 12 | 10 | Oliver | None | None | None | None |
| 1035 | 744995568523612160 | NaN | NaN | 2016-06-20 20:49:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744995568523612160/photo/1,https://twitter.com/dog_rates/status/744995568523612160/photo/1 | 9 | 10 | Abby | None | None | None | puppo |
| 1036 | 744971049620602880 | NaN | NaN | 2016-06-20 19:11:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1,https://twitter.com/dog_rates/status/744971049620602880/photo/1 | 12 | 10 | Indie | None | None | None | None |
| 1037 | 744709971296780288 | NaN | NaN | 2016-06-20 01:54:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744709971296780288/photo/1 | 10 | 10 | Harvey | None | None | None | None |
| 1038 | 744334592493166593 | NaN | NaN | 2016-06-19 01:02:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744334592493166593/photo/1 | 11 | 10 | Blanket | None | None | None | None |
| 1039 | 744234799360020481 | NaN | NaN | 2016-06-18 18:26:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744234799360020481/video/1 | 13 | 10 | None | doggo | None | None | None |
| 1040 | 744223424764059648 | NaN | NaN | 2016-06-18 17:41:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N | NaN | NaN | NaN | https://twitter.com/strange_animals/status/672108316018024452 | 12 | 10 | actually | None | None | pupper | None |
| 1041 | 743980027717509120 | NaN | NaN | 2016-06-18 01:33:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743980027717509120/photo/1 | 11 | 10 | Geno | None | None | None | None |
| 1042 | 743895849529389061 | NaN | NaN | 2016-06-17 19:59:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743895849529389061/photo/1 | 10 | 10 | None | None | None | None | None |
| 1043 | 743835915802583040 | NaN | NaN | 2016-06-17 16:01:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @dog_rates: Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0Dv… | 6.671383e+17 | 4.196984e+09 | 2015-11-19 00:32:12 +0000 | https://twitter.com/dog_rates/status/667138269671505920/photo/1 | 10 | 10 | None | None | None | None | None |
| 1044 | 743609206067040256 | NaN | NaN | 2016-06-17 01:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1,https://twitter.com/dog_rates/status/743609206067040256/photo/1 | 10 | 10 | Stark | None | None | None | None |
| 1045 | 743595368194129920 | NaN | NaN | 2016-06-17 00:05:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743595368194129920/photo/1 | 7 | 10 | Harold | None | None | None | None |
| 1046 | 743545585370791937 | NaN | NaN | 2016-06-16 20:47:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1,https://twitter.com/dog_rates/status/743545585370791937/photo/1 | 11 | 10 | Bentley | None | None | None | None |
| 1047 | 743510151680958465 | NaN | NaN | 2016-06-16 18:26:48 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743510151680958465/video/1 | 13 | 10 | Beya | None | None | None | None |
| 1048 | 743253157753532416 | NaN | NaN | 2016-06-16 01:25:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743253157753532416/photo/1 | 10 | 10 | Kilo | None | None | None | puppo |
| 1049 | 743222593470234624 | NaN | NaN | 2016-06-15 23:24:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743222593470234624/photo/1 | 12 | 10 | a | None | None | pupper | None |
| 1050 | 743210557239623680 | NaN | NaN | 2016-06-15 22:36:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743210557239623680/photo/1 | 10 | 10 | Kayla | None | None | None | None |
| 1051 | 742534281772302336 | NaN | NaN | 2016-06-14 01:49:03 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv | NaN | NaN | NaN | https://vine.co/v/iLTZmtE1FTB | 11 | 10 | None | doggo | None | None | None |
| 1052 | 742528092657332225 | NaN | NaN | 2016-06-14 01:24:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742528092657332225/photo/1,https://twitter.com/dog_rates/status/742528092657332225/photo/1 | 10 | 10 | Maxaroni | None | None | None | None |
| 1053 | 742465774154047488 | NaN | NaN | 2016-06-13 21:16:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742465774154047488/photo/1,https://twitter.com/dog_rates/status/742465774154047488/photo/1 | 14 | 10 | None | None | None | pupper | None |
| 1054 | 742423170473463808 | NaN | NaN | 2016-06-13 18:27:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742423170473463808/photo/1 | 12 | 10 | Bell | None | None | None | None |
| 1055 | 742385895052087300 | NaN | NaN | 2016-06-13 15:59:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742385895052087300/photo/1 | 11 | 10 | Phil | None | None | None | None |
| 1056 | 742161199639494656 | NaN | NaN | 2016-06-13 01:06:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742161199639494656/photo/1 | 12 | 10 | Doug | None | None | None | None |
| 1057 | 742150209887731712 | NaN | NaN | 2016-06-13 00:22:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742150209887731712/photo/1 | 8 | 10 | Edmund | None | None | pupper | None |
| 1058 | 741793263812808706 | NaN | NaN | 2016-06-12 00:44:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741793263812808706/photo/1,https://twitter.com/dog_rates/status/741793263812808706/photo/1 | 10 | 10 | None | None | None | None | None |
| 1059 | 741743634094141440 | NaN | NaN | 2016-06-11 21:27:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1,https://twitter.com/dog_rates/status/741743634094141440/photo/1 | 11 | 10 | Aqua | None | None | pupper | None |
| 1060 | 741438259667034112 | NaN | NaN | 2016-06-11 01:13:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741438259667034112/photo/1 | 9 | 10 | Tucker | None | None | None | None |
| 1061 | 741303864243200000 | NaN | NaN | 2016-06-10 16:19:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741303864243200000/photo/1 | 12 | 10 | Theodore | None | None | None | None |
| 1062 | 741099773336379392 | NaN | NaN | 2016-06-10 02:48:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ | NaN | NaN | NaN | https://vine.co/v/ixHYvdxUx1L | 11 | 10 | Ted | None | None | None | None |
| 1063 | 741067306818797568 | NaN | NaN | 2016-06-10 00:39:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741067306818797568/photo/1 | 12 | 10 | just | doggo | None | pupper | None |
| 1064 | 740995100998766593 | NaN | NaN | 2016-06-09 19:52:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740995100998766593/photo/1 | 10 | 10 | Leo | None | None | None | None |
| 1065 | 740711788199743490 | NaN | NaN | 2016-06-09 01:07:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740711788199743490/photo/1 | 9 | 10 | None | None | None | None | None |
| 1066 | 740699697422163968 | NaN | NaN | 2016-06-09 00:19:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740699697422163968/photo/1 | 8 | 10 | Chip | None | None | None | None |
| 1067 | 740676976021798912 | NaN | NaN | 2016-06-08 22:48:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740676976021798912/photo/1 | 11 | 10 | Baloo | None | None | pupper | None |
| 1068 | 740373189193256964 | NaN | NaN | 2016-06-08 02:41:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1 | 9 | 11 | None | None | None | None | None |
| 1069 | 740365076218183684 | NaN | NaN | 2016-06-08 02:09:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740365076218183684/photo/1 | 10 | 10 | None | None | None | None | None |
| 1070 | 740359016048689152 | NaN | NaN | 2016-06-08 01:45:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740359016048689152/photo/1 | 9 | 10 | Chase | None | None | None | None |
| 1071 | 740214038584557568 | NaN | NaN | 2016-06-07 16:09:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740214038584557568/photo/1 | 10 | 10 | getting | None | None | None | None |
| 1072 | 739979191639244800 | NaN | NaN | 2016-06-07 00:36:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739979191639244800/photo/1 | 12 | 10 | Nollie | None | None | None | None |
| 1073 | 739932936087216128 | NaN | NaN | 2016-06-06 21:32:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739932936087216128/photo/1 | 10 | 10 | Rorie | None | None | None | None |
| 1074 | 739844404073074688 | NaN | NaN | 2016-06-06 15:40:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739844404073074688/photo/1 | 12 | 10 | Simba | None | None | None | None |
| 1075 | 739623569819336705 | NaN | NaN | 2016-06-06 01:02:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON | NaN | NaN | NaN | https://vine.co/v/iY9Fr1I31U6 | 12 | 10 | None | doggo | None | None | None |
| 1076 | 739606147276148736 | NaN | NaN | 2016-06-05 23:53:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1,https://twitter.com/dog_rates/status/739606147276148736/photo/1 | 9 | 10 | Benji | None | None | pupper | None |
| 1077 | 739544079319588864 | NaN | NaN | 2016-06-05 19:47:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739544079319588864/photo/1 | 10 | 10 | None | None | None | None | None |
| 1078 | 739485634323156992 | NaN | NaN | 2016-06-05 15:54:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739485634323156992/photo/1,https://twitter.com/dog_rates/status/739485634323156992/photo/1 | 6 | 10 | Kyle | None | None | None | None |
| 1079 | 739238157791694849 | NaN | NaN | 2016-06-04 23:31:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739238157791694849/video/1 | 13 | 10 | None | doggo | None | None | None |
| 1080 | 738891149612572673 | 7.384119e+17 | 3.589728e+08 | 2016-06-04 00:32:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @mount_alex3 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1081 | 738885046782832640 | NaN | NaN | 2016-06-04 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738885046782832640/photo/1 | 11 | 10 | Charles | None | None | None | None |
| 1082 | 738883359779196928 | NaN | NaN | 2016-06-04 00:01:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738883359779196928/photo/1,https://twitter.com/dog_rates/status/738883359779196928/photo/1 | 10 | 10 | None | None | None | None | None |
| 1083 | 738537504001953792 | NaN | NaN | 2016-06-03 01:07:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738537504001953792/photo/1,https://twitter.com/dog_rates/status/738537504001953792/photo/1 | 11 | 10 | Bayley | None | None | None | puppo |
| 1084 | 738402415918125056 | NaN | NaN | 2016-06-02 16:10:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738402415918125056/photo/1 | 10 | 10 | None | None | None | None | None |
| 1085 | 738184450748633089 | NaN | NaN | 2016-06-02 01:44:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738184450748633089/photo/1 | 9 | 10 | None | None | None | None | None |
| 1086 | 738166403467907072 | NaN | NaN | 2016-06-02 00:32:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1,https://twitter.com/dog_rates/status/738166403467907072/photo/1 | 12 | 10 | Axel | None | None | None | None |
| 1087 | 738156290900254721 | NaN | NaN | 2016-06-01 23:52:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738156290900254721/photo/1 | 10 | 10 | Storkson | None | None | None | None |
| 1088 | 737826014890496000 | NaN | NaN | 2016-06-01 02:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737826014890496000/photo/1,https://twitter.com/dog_rates/status/737826014890496000/photo/1 | 10 | 10 | Remy | None | None | None | None |
| 1089 | 737800304142471168 | NaN | NaN | 2016-06-01 00:17:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737800304142471168/photo/1 | 10 | 10 | Bella | None | None | None | None |
| 1090 | 737678689543020544 | NaN | NaN | 2016-05-31 16:14:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737678689543020544/photo/1 | 11 | 10 | None | None | None | None | None |
| 1091 | 737445876994609152 | NaN | NaN | 2016-05-31 00:49:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737445876994609152/photo/1 | 13 | 10 | None | None | floofer | None | None |
| 1092 | 737322739594330112 | NaN | NaN | 2016-05-30 16:40:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737322739594330112/photo/1 | 9 | 10 | Lily | None | None | None | None |
| 1093 | 737310737551491075 | NaN | NaN | 2016-05-30 15:52:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737310737551491075/video/1 | 13 | 10 | None | None | None | None | None |
| 1094 | 736736130620620800 | NaN | NaN | 2016-05-29 01:49:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736736130620620800/photo/1 | 13 | 10 | Chadrick | None | None | None | None |
| 1095 | 736392552031657984 | NaN | NaN | 2016-05-28 03:04:00 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | NaN | NaN | NaN | https://vine.co/v/iEggaEOiLO3 | 13 | 10 | mad | None | None | pupper | None |
| 1096 | 736365877722001409 | NaN | NaN | 2016-05-28 01:18:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1,https://twitter.com/dog_rates/status/736365877722001409/photo/1 | 11 | 10 | Rory | None | None | pupper | None |
| 1097 | 736225175608430592 | NaN | NaN | 2016-05-27 15:58:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736225175608430592/photo/1 | 10 | 10 | very | None | None | None | None |
| 1098 | 736010884653420544 | NaN | NaN | 2016-05-27 01:47:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736010884653420544/photo/1,https://twitter.com/dog_rates/status/736010884653420544/photo/1 | 10 | 10 | None | None | None | None | None |
| 1099 | 735991953473572864 | NaN | NaN | 2016-05-27 00:32:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1,https://twitter.com/dog_rates/status/735991953473572864/photo/1 | 11 | 10 | Maxaroni | None | None | None | None |
| 1100 | 735648611367784448 | NaN | NaN | 2016-05-26 01:47:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735648611367784448/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1101 | 735635087207878657 | NaN | NaN | 2016-05-26 00:54:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735635087207878657/photo/1,https://twitter.com/dog_rates/status/735635087207878657/photo/1 | 11 | 10 | Dakota | None | None | None | None |
| 1102 | 735274964362878976 | NaN | NaN | 2016-05-25 01:03:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735274964362878976/photo/1,https://twitter.com/dog_rates/status/735274964362878976/photo/1 | 11 | 10 | None | None | None | None | None |
| 1103 | 735256018284875776 | NaN | NaN | 2016-05-24 23:47:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735256018284875776/photo/1 | 8 | 10 | Kellogg | doggo | None | None | None |
| 1104 | 735137028879360001 | NaN | NaN | 2016-05-24 15:55:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735137028879360001/photo/1 | 9 | 10 | Buckley | None | None | pupper | None |
| 1105 | 734912297295085568 | NaN | NaN | 2016-05-24 01:02:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734912297295085568/photo/1 | 10 | 10 | Jax | None | None | None | None |
| 1106 | 734787690684657664 | NaN | NaN | 2016-05-23 16:46:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1,https://twitter.com/dog_rates/status/734787690684657664/photo/1 | 13 | 10 | None | None | None | None | None |
| 1107 | 734776360183431168 | NaN | NaN | 2016-05-23 16:01:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734776360183431168/photo/1 | 11 | 10 | Livvie | None | None | None | None |
| 1108 | 734559631394082816 | NaN | NaN | 2016-05-23 01:40:38 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC | NaN | NaN | NaN | https://vine.co/v/iExiLXiiHvX | 10 | 10 | None | None | None | None | None |
| 1109 | 733828123016450049 | NaN | NaN | 2016-05-21 01:13:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733828123016450049/photo/1,https://twitter.com/dog_rates/status/733828123016450049/photo/1 | 10 | 10 | Terry | None | None | None | None |
| 1110 | 733822306246479872 | NaN | NaN | 2016-05-21 00:50:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733822306246479872/photo/1 | 10 | 10 | Moose | None | floofer | None | None |
| 1111 | 733482008106668032 | NaN | NaN | 2016-05-20 02:18:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733482008106668032/photo/1 | 10 | 10 | None | None | None | None | None |
| 1112 | 733460102733135873 | NaN | NaN | 2016-05-20 00:51:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733460102733135873/photo/1 | 11 | 10 | Hermione | None | None | None | None |
| 1113 | 733109485275860992 | NaN | NaN | 2016-05-19 01:38:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733109485275860992/photo/1 | 12 | 10 | None | doggo | None | pupper | None |
| 1114 | 732732193018155009 | NaN | NaN | 2016-05-18 00:39:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732732193018155009/photo/1 | 12 | 10 | Ralpher | None | None | None | None |
| 1115 | 732726085725589504 | NaN | NaN | 2016-05-18 00:14:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732726085725589504/photo/1 | 11 | 10 | Aldrick | None | None | None | None |
| 1116 | 732585889486888962 | NaN | NaN | 2016-05-17 14:57:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732585889486888962/photo/1,https://twitter.com/dog_rates/status/732585889486888962/photo/1 | 10 | 10 | None | None | None | None | None |
| 1117 | 732375214819057664 | NaN | NaN | 2016-05-17 01:00:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732375214819057664/photo/1 | 11 | 10 | Kyle | doggo | None | None | None |
| 1118 | 732005617171337216 | NaN | NaN | 2016-05-16 00:31:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732005617171337216/photo/1,https://twitter.com/dog_rates/status/732005617171337216/photo/1 | 11 | 10 | Larry | None | None | None | None |
| 1119 | 731285275100512256 | NaN | NaN | 2016-05-14 00:49:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/731285275100512256/photo/1 | 12 | 10 | Solomon | None | None | None | None |
| 1120 | 731156023742988288 | NaN | NaN | 2016-05-13 16:15:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/731156023742988288/photo/1 | 204 | 170 | this | None | None | None | None |
| 1121 | 730924654643314689 | NaN | NaN | 2016-05-13 00:56:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730924654643314689/photo/1 | 9 | 10 | unacceptable | None | None | None | None |
| 1122 | 730573383004487680 | NaN | NaN | 2016-05-12 01:40:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1,https://twitter.com/dog_rates/status/730573383004487680/photo/1 | 10 | 10 | Rooney | None | None | pupper | None |
| 1123 | 730427201120833536 | NaN | NaN | 2016-05-11 15:59:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730427201120833536/photo/1 | 11 | 10 | Crystal | None | None | None | None |
| 1124 | 730211855403241472 | NaN | NaN | 2016-05-11 01:44:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730211855403241472/photo/1 | 11 | 10 | Ziva | None | None | None | None |
| 1125 | 730196704625098752 | NaN | NaN | 2016-05-11 00:43:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730196704625098752/photo/1 | 6 | 10 | Charles | None | None | None | None |
| 1126 | 729854734790754305 | NaN | NaN | 2016-05-10 02:05:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729854734790754305/photo/1 | 11 | 10 | Ollie | None | None | None | None |
| 1127 | 729838605770891264 | 7.291135e+17 | 4.196984e+09 | 2016-05-10 01:00:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729838605770891264/video/1 | 12 | 10 | None | None | None | None | None |
| 1128 | 729823566028484608 | NaN | NaN | 2016-05-10 00:01:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729823566028484608/photo/1 | 13 | 10 | Stefan | None | None | None | None |
| 1129 | 729463711119904772 | NaN | NaN | 2016-05-09 00:11:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729463711119904772/photo/1 | 13 | 10 | Pupcasso | None | None | None | None |
| 1130 | 729113531270991872 | NaN | NaN | 2016-05-08 00:59:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729113531270991872/photo/1,https://twitter.com/dog_rates/status/729113531270991872/photo/1 | 10 | 10 | None | None | None | None | None |
| 1131 | 728986383096946689 | NaN | NaN | 2016-05-07 16:34:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728986383096946689/photo/1,https://twitter.com/dog_rates/status/728986383096946689/photo/1 | 11 | 10 | Puff | None | None | None | None |
| 1132 | 728760639972315136 | NaN | NaN | 2016-05-07 01:37:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728760639972315136/photo/1,https://twitter.com/dog_rates/status/728760639972315136/photo/1 | 13 | 10 | None | None | None | None | None |
| 1133 | 728751179681943552 | NaN | NaN | 2016-05-07 00:59:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728751179681943552/photo/1 | 10 | 10 | Flurpson | None | None | None | None |
| 1134 | 728653952833728512 | NaN | NaN | 2016-05-06 18:33:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1,https://twitter.com/dog_rates/status/728653952833728512/photo/1 | 8 | 10 | Coleman | None | None | None | None |
| 1135 | 728409960103686147 | NaN | NaN | 2016-05-06 02:24:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728409960103686147/photo/1 | 10 | 10 | Wallace | None | None | None | None |
| 1136 | 728387165835677696 | NaN | NaN | 2016-05-06 00:53:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728387165835677696/photo/1 | 12 | 10 | Enchilada | None | None | None | None |
| 1137 | 728046963732717569 | NaN | NaN | 2016-05-05 02:21:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728046963732717569/photo/1 | 11 | 10 | Raymond | None | None | None | None |
| 1138 | 728035342121635841 | NaN | NaN | 2016-05-05 01:35:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728035342121635841/photo/1,https://twitter.com/dog_rates/status/728035342121635841/photo/1 | 12 | 10 | all | None | None | pupper | None |
| 1139 | 728015554473250816 | NaN | NaN | 2016-05-05 00:16:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728015554473250816/photo/1 | 11 | 10 | Rueben | None | None | pupper | None |
| 1140 | 727685679342333952 | NaN | NaN | 2016-05-04 02:26:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727685679342333952/photo/1 | 12 | 10 | Cilantro | None | None | None | None |
| 1141 | 727644517743104000 | NaN | NaN | 2016-05-03 23:42:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727644517743104000/photo/1,https://twitter.com/dog_rates/status/727644517743104000/photo/1 | 13 | 10 | None | doggo | None | None | None |
| 1142 | 727524757080539137 | NaN | NaN | 2016-05-03 15:46:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727524757080539137/photo/1,https://twitter.com/dog_rates/status/727524757080539137/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1143 | 727314416056803329 | NaN | NaN | 2016-05-03 01:50:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1,https://twitter.com/dog_rates/status/727314416056803329/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1144 | 727286334147182592 | NaN | NaN | 2016-05-02 23:59:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727286334147182592/photo/1 | 9 | 10 | None | None | None | None | None |
| 1145 | 727175381690781696 | NaN | NaN | 2016-05-02 16:38:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 | 10 | 10 | Karll | None | None | None | None |
| 1146 | 727155742655025152 | NaN | NaN | 2016-05-02 15:20:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 | NaN | NaN | NaN | https://vine.co/v/ixa1ejbXiM7 | 11 | 10 | None | None | None | None | None |
| 1147 | 726935089318363137 | NaN | NaN | 2016-05-02 00:43:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1,https://twitter.com/dog_rates/status/726935089318363137/photo/1 | 12 | 10 | Sprout | None | None | None | None |
| 1148 | 726887082820554753 | NaN | NaN | 2016-05-01 21:32:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726887082820554753/photo/1 | 10 | 10 | Blitz | None | None | None | None |
| 1149 | 726828223124897792 | NaN | NaN | 2016-05-01 17:38:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726828223124897792/photo/1 | 12 | 10 | Bloop | None | None | None | None |
| 1150 | 726224900189511680 | NaN | NaN | 2016-04-30 01:41:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726224900189511680/photo/1 | 9 | 10 | None | None | None | None | None |
| 1151 | 725842289046749185 | NaN | NaN | 2016-04-29 00:21:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725842289046749185/photo/1 | 12 | 10 | Colby | None | None | None | None |
| 1152 | 725786712245440512 | NaN | NaN | 2016-04-28 20:40:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725786712245440512/photo/1 | 11 | 10 | Lillie | None | None | pupper | None |
| 1153 | 725729321944506368 | NaN | NaN | 2016-04-28 16:52:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725729321944506368/photo/1 | 12 | 10 | Lola | None | None | None | None |
| 1154 | 725458796924002305 | NaN | NaN | 2016-04-27 22:57:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W | NaN | NaN | NaN | https://twitter.com/foxdeportes/status/725136065078521856 | 13 | 10 | None | None | None | None | None |
| 1155 | 724983749226668032 | NaN | NaN | 2016-04-26 15:29:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724983749226668032/photo/1 | 12 | 10 | Fred | None | None | None | None |
| 1156 | 724771698126512129 | NaN | NaN | 2016-04-26 01:26:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1,https://twitter.com/dog_rates/status/724771698126512129/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 1157 | 724405726123311104 | NaN | NaN | 2016-04-25 01:12:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724405726123311104/photo/1 | 10 | 10 | Ashleigh | None | None | pupper | None |
| 1158 | 724049859469295616 | NaN | NaN | 2016-04-24 01:38:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724049859469295616/photo/1 | 10 | 10 | Kreggory | None | None | None | None |
| 1159 | 724046343203856385 | NaN | NaN | 2016-04-24 01:24:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724046343203856385/photo/1 | 10 | 10 | Sarge | None | None | None | None |
| 1160 | 724004602748780546 | NaN | NaN | 2016-04-23 22:38:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1,https://twitter.com/dog_rates/status/724004602748780546/photo/1 | 11 | 10 | Luther | None | None | pupper | None |
| 1161 | 723912936180330496 | NaN | NaN | 2016-04-23 16:34:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723912936180330496/photo/1 | 12 | 10 | Sugar | None | None | None | None |
| 1162 | 723688335806480385 | NaN | NaN | 2016-04-23 01:41:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723688335806480385/photo/1,https://twitter.com/dog_rates/status/723688335806480385/photo/1 | 12 | 10 | Reginald | None | None | None | None |
| 1163 | 723673163800948736 | NaN | NaN | 2016-04-23 00:41:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723673163800948736/photo/1 | 10 | 10 | Ivar | None | None | None | None |
| 1164 | 723179728551723008 | NaN | NaN | 2016-04-21 16:00:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723179728551723008/photo/1 | 8 | 10 | Jangle | None | None | None | None |
| 1165 | 722974582966214656 | NaN | NaN | 2016-04-21 02:25:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/722974582966214656/photo/1 | 4 | 20 | None | None | None | None | None |
| 1166 | 722613351520608256 | NaN | NaN | 2016-04-20 02:30:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/722613351520608256/photo/1 | 12 | 10 | Schnitzel | None | None | None | None |
| 1167 | 721503162398597120 | NaN | NaN | 2016-04-17 00:58:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1,https://twitter.com/dog_rates/status/721503162398597120/photo/1 | 11 | 10 | Panda | None | None | None | None |
| 1168 | 721001180231503872 | NaN | NaN | 2016-04-15 15:44:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/721001180231503872/photo/1 | 11 | 10 | Oliver | None | None | pupper | None |
| 1169 | 720785406564900865 | NaN | NaN | 2016-04-15 01:26:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720785406564900865/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 1170 | 720775346191278080 | NaN | NaN | 2016-04-15 00:46:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720775346191278080/photo/1 | 10 | 10 | Berkeley | None | None | None | None |
| 1171 | 720415127506415616 | NaN | NaN | 2016-04-14 00:55:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1,https://twitter.com/dog_rates/status/720415127506415616/photo/1 | 10 | 10 | None | None | None | None | None |
| 1172 | 720389942216527872 | NaN | NaN | 2016-04-13 23:15:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720389942216527872/photo/1 | 11 | 10 | Ralphé | None | None | None | None |
| 1173 | 720340705894408192 | NaN | NaN | 2016-04-13 19:59:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720340705894408192/photo/1 | 10 | 10 | Derek | None | None | pupper | None |
| 1174 | 720059472081784833 | NaN | NaN | 2016-04-13 01:22:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720059472081784833/photo/1 | 9 | 10 | Charleson | None | None | None | None |
| 1175 | 720043174954147842 | NaN | NaN | 2016-04-13 00:17:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720043174954147842/photo/1 | 11 | 10 | Neptune | None | None | None | None |
| 1176 | 719991154352222208 | NaN | NaN | 2016-04-12 20:50:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719991154352222208/photo/1,https://twitter.com/dog_rates/status/719991154352222208/photo/1 | 10 | 10 | None | doggo | None | None | None |
| 1177 | 719704490224398336 | NaN | NaN | 2016-04-12 01:51:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719704490224398336/photo/1 | 12 | 10 | Clyde | None | None | pupper | None |
| 1178 | 719551379208073216 | NaN | NaN | 2016-04-11 15:43:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719551379208073216/photo/1 | 10 | 10 | Harnold | None | None | None | None |
| 1179 | 719367763014393856 | NaN | NaN | 2016-04-11 03:33:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sid & Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719367763014393856/photo/1 | 11 | 10 | Sid | None | None | None | None |
| 1180 | 719339463458033665 | NaN | NaN | 2016-04-11 01:41:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719339463458033665/photo/1 | 10 | 10 | Lucy | None | None | None | None |
| 1181 | 719332531645071360 | NaN | NaN | 2016-04-11 01:13:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719332531645071360/photo/1 | 11 | 10 | Pippa | None | None | None | None |
| 1182 | 718971898235854848 | NaN | NaN | 2016-04-10 01:20:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718971898235854848/photo/1 | 10 | 10 | Sadie | None | None | None | None |
| 1183 | 718939241951195136 | NaN | NaN | 2016-04-09 23:10:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718939241951195136/photo/1 | 12 | 10 | Otis | None | None | None | None |
| 1184 | 718631497683582976 | NaN | NaN | 2016-04-09 02:47:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718631497683582976/photo/1 | 10 | 10 | None | None | None | None | None |
| 1185 | 718613305783398402 | NaN | NaN | 2016-04-09 01:35:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718613305783398402/photo/1 | 11 | 10 | Carper | None | None | None | None |
| 1186 | 718540630683709445 | NaN | NaN | 2016-04-08 20:46:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718540630683709445/photo/1,https://twitter.com/dog_rates/status/718540630683709445/photo/1 | 10 | 10 | None | None | None | None | None |
| 1187 | 718460005985447936 | NaN | NaN | 2016-04-08 15:26:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718460005985447936/photo/1 | 9 | 10 | Bowie | None | None | None | None |
| 1188 | 718454725339934721 | NaN | NaN | 2016-04-08 15:05:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718454725339934721/photo/1 | 13 | 10 | None | None | None | None | None |
| 1189 | 718246886998687744 | NaN | NaN | 2016-04-08 01:19:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718246886998687744/photo/1 | 3 | 10 | Alexanderson | None | None | None | None |
| 1190 | 718234618122661888 | NaN | NaN | 2016-04-08 00:30:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718234618122661888/photo/1 | 11 | 10 | Suki | None | None | None | None |
| 1191 | 717841801130979328 | NaN | NaN | 2016-04-06 22:29:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717841801130979328/photo/1 | 11 | 10 | Barclay | None | None | None | None |
| 1192 | 717790033953034240 | NaN | NaN | 2016-04-06 19:04:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717790033953034240/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1193 | 717537687239008257 | NaN | NaN | 2016-04-06 02:21:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717537687239008257/photo/1 | 11 | 10 | a | None | None | None | None |
| 1194 | 717428917016076293 | NaN | NaN | 2016-04-05 19:09:17 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 | NaN | NaN | NaN | https://vine.co/v/iIhEU2lVqxz | 11 | 10 | Skittle | None | None | None | None |
| 1195 | 717421804990701568 | NaN | NaN | 2016-04-05 18:41:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717421804990701568/photo/1,https://twitter.com/dog_rates/status/717421804990701568/photo/1 | 9 | 10 | Ebby | None | None | None | None |
| 1196 | 717047459982213120 | NaN | NaN | 2016-04-04 17:53:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717047459982213120/photo/1 | 12 | 10 | Flávio | None | None | None | None |
| 1197 | 717009362452090881 | NaN | NaN | 2016-04-04 15:22:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717009362452090881/photo/1 | 10 | 10 | Smokey | None | None | pupper | None |
| 1198 | 716802964044845056 | NaN | NaN | 2016-04-04 01:41:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716802964044845056/photo/1,https://twitter.com/dog_rates/status/716802964044845056/photo/1 | 10 | 10 | Link | None | None | None | None |
| 1199 | 716791146589110272 | NaN | NaN | 2016-04-04 00:55:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716791146589110272/photo/1 | 11 | 10 | Jennifur | None | None | None | None |
| 1200 | 716730379797970944 | NaN | NaN | 2016-04-03 20:53:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC | NaN | NaN | NaN | https://twitter.com/chpsanfrancisco/status/716637124322177024 | 12 | 10 | None | None | None | None | None |
| 1201 | 716447146686459905 | NaN | NaN | 2016-04-03 02:08:05 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E | NaN | NaN | NaN | https://vine.co/v/eMmXVPn5eQK | 13 | 10 | Ozzy | None | None | pupper | None |
| 1202 | 716439118184652801 | NaN | NaN | 2016-04-03 01:36:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716439118184652801/photo/1 | 50 | 50 | Bluebert | None | None | None | None |
| 1203 | 716285507865542656 | NaN | NaN | 2016-04-02 15:25:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716285507865542656/photo/1,https://twitter.com/dog_rates/status/716285507865542656/photo/1 | 12 | 10 | Stephanus | None | None | None | None |
| 1204 | 716080869887381504 | NaN | NaN | 2016-04-02 01:52:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716080869887381504/photo/1,https://twitter.com/dog_rates/status/716080869887381504/photo/1 | 11 | 10 | None | doggo | None | None | None |
| 1205 | 715928423106027520 | NaN | NaN | 2016-04-01 15:46:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715928423106027520/photo/1 | 11 | 10 | Bubbles | None | None | None | None |
| 1206 | 715758151270801409 | NaN | NaN | 2016-04-01 04:30:16 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP | NaN | NaN | NaN | https://vine.co/v/hYdLVKDpAFu | 13 | 10 | old | None | None | None | None |
| 1207 | 715733265223708672 | NaN | NaN | 2016-04-01 02:51:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715733265223708672/photo/1 | 10 | 10 | a | None | None | None | None |
| 1208 | 715704790270025728 | NaN | NaN | 2016-04-01 00:58:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp | NaN | NaN | NaN | https://vine.co/v/ijAlDnuOD0l | 11 | 10 | Bentley | None | None | None | None |
| 1209 | 715696743237730304 | NaN | NaN | 2016-04-01 00:26:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715696743237730304/photo/1 | 10 | 10 | Toby | None | None | None | None |
| 1210 | 715680795826982913 | NaN | NaN | 2016-03-31 23:22:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1,https://twitter.com/dog_rates/status/715680795826982913/photo/1 | 12 | 10 | Zeus | None | None | None | None |
| 1211 | 715360349751484417 | NaN | NaN | 2016-03-31 02:09:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715360349751484417/photo/1 | 11 | 10 | Bertson | None | None | None | None |
| 1212 | 715342466308784130 | NaN | NaN | 2016-03-31 00:58:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715342466308784130/photo/1,https://twitter.com/dog_rates/status/715342466308784130/photo/1 | 10 | 10 | Oscar | None | None | None | None |
| 1213 | 715220193576927233 | NaN | NaN | 2016-03-30 16:52:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715220193576927233/photo/1 | 10 | 10 | Nico | None | None | None | None |
| 1214 | 715200624753819648 | NaN | NaN | 2016-03-30 15:34:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715200624753819648/photo/1 | 12 | 10 | Michelangelope | None | None | None | None |
| 1215 | 715009755312439296 | NaN | NaN | 2016-03-30 02:56:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715009755312439296/photo/1 | 12 | 10 | Siba | None | None | None | None |
| 1216 | 714982300363173890 | NaN | NaN | 2016-03-30 01:07:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714982300363173890/photo/1 | 9 | 10 | Calbert | None | None | None | None |
| 1217 | 714962719905021952 | NaN | NaN | 2016-03-29 23:49:30 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ | NaN | NaN | NaN | https://vine.co/v/inVtemLt9tE | 12 | 10 | None | None | None | None | None |
| 1218 | 714957620017307648 | NaN | NaN | 2016-03-29 23:29:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714957620017307648/photo/1 | 10 | 10 | Curtis | None | None | None | None |
| 1219 | 714631576617938945 | NaN | NaN | 2016-03-29 01:53:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714631576617938945/photo/1 | 4 | 10 | Benedict | None | None | None | None |
| 1220 | 714606013974974464 | NaN | NaN | 2016-03-29 00:12:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714606013974974464/photo/1 | 12 | 10 | None | None | None | None | None |
| 1221 | 714485234495041536 | NaN | NaN | 2016-03-28 16:12:09 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF | NaN | NaN | NaN | https://vine.co/v/iDrOvVqq0A6 | 10 | 10 | Blitz | None | None | None | None |
| 1222 | 714258258790387713 | NaN | NaN | 2016-03-28 01:10:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714258258790387713/photo/1 | 10 | 10 | Travis | None | None | None | None |
| 1223 | 714251586676113411 | NaN | NaN | 2016-03-28 00:43:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714251586676113411/photo/1,https://twitter.com/dog_rates/status/714251586676113411/photo/1 | 8 | 10 | Thumas | None | None | None | None |
| 1224 | 714214115368108032 | NaN | NaN | 2016-03-27 22:14:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714214115368108032/photo/1 | 13 | 10 | None | None | None | None | None |
| 1225 | 714141408463036416 | NaN | NaN | 2016-03-27 17:25:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714141408463036416/photo/1 | 10 | 10 | None | None | None | None | None |
| 1226 | 713919462244790272 | NaN | NaN | 2016-03-27 02:43:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713919462244790272/photo/1 | 12 | 10 | Kanu | None | None | None | None |
| 1227 | 713909862279876608 | NaN | NaN | 2016-03-27 02:05:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS | NaN | NaN | NaN | https://vine.co/v/iDWlapaXWmm | 12 | 10 | Doug | None | None | None | None |
| 1228 | 713900603437621249 | NaN | NaN | 2016-03-27 01:29:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713900603437621249/photo/1 | 99 | 90 | None | None | None | None | None |
| 1229 | 713761197720473600 | NaN | NaN | 2016-03-26 16:15:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713761197720473600/photo/1,https://twitter.com/dog_rates/status/713761197720473600/photo/1 | 12 | 10 | Piper | None | None | None | None |
| 1230 | 713411074226274305 | NaN | NaN | 2016-03-25 17:03:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713411074226274305/photo/1 | 11 | 10 | None | None | None | None | None |
| 1231 | 713177543487135744 | NaN | NaN | 2016-03-25 01:35:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713177543487135744/photo/1 | 10 | 10 | Lance | None | None | None | None |
| 1232 | 713175907180089344 | NaN | NaN | 2016-03-25 01:29:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713175907180089344/photo/1 | 10 | 10 | Opie | None | None | None | None |
| 1233 | 712809025985978368 | NaN | NaN | 2016-03-24 01:11:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712809025985978368/photo/1 | 10 | 10 | Stubert | None | None | None | None |
| 1234 | 712717840512598017 | NaN | NaN | 2016-03-23 19:09:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712717840512598017/photo/1 | 10 | 10 | None | None | None | None | None |
| 1235 | 712668654853337088 | NaN | NaN | 2016-03-23 15:53:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1,https://twitter.com/dog_rates/status/712668654853337088/photo/1 | 10 | 10 | Sunny | None | None | None | None |
| 1236 | 712438159032893441 | NaN | NaN | 2016-03-23 00:37:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712438159032893441/photo/1 | 11 | 10 | Kane | None | None | None | None |
| 1237 | 712309440758808576 | NaN | NaN | 2016-03-22 16:06:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV | NaN | NaN | NaN | https://twitter.com/stickergrub/status/709919141004595201 | 12 | 10 | None | None | None | pupper | None |
| 1238 | 712097430750289920 | NaN | NaN | 2016-03-22 02:03:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712097430750289920/photo/1 | 10 | 10 | None | None | None | None | None |
| 1239 | 712092745624633345 | NaN | NaN | 2016-03-22 01:45:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712092745624633345/photo/1 | 7 | 10 | Steven | None | None | None | None |
| 1240 | 712085617388212225 | NaN | NaN | 2016-03-22 01:16:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1,https://twitter.com/dog_rates/status/712085617388212225/photo/1 | 11 | 10 | Olive | None | None | None | None |
| 1241 | 712065007010385924 | NaN | NaN | 2016-03-21 23:55:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712065007010385924/photo/1 | 6 | 10 | Chester | None | None | None | None |
| 1242 | 711998809858043904 | NaN | NaN | 2016-03-21 19:31:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT @twitter: @dog_rates Awesome Tweet! 12/10. Would Retweet. #LoveTwitter https://t.co/j6FQGhxYuN | 7.119983e+17 | 7.832140e+05 | 2016-03-21 19:29:52 +0000 | https://twitter.com/twitter/status/711998279773347841/photo/1,https://twitter.com/twitter/status/711998279773347841/photo/1 | 12 | 10 | None | None | None | None | None |
| 1243 | 711968124745228288 | NaN | NaN | 2016-03-21 17:30:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711968124745228288/photo/1 | 10 | 10 | Winston | None | None | pupper | None |
| 1244 | 711743778164514816 | NaN | NaN | 2016-03-21 02:38:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711743778164514816/photo/1 | 11 | 10 | Roosevelt | None | None | None | None |
| 1245 | 711732680602345472 | NaN | NaN | 2016-03-21 01:54:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1,https://twitter.com/dog_rates/status/711732680602345472/photo/1 | 10 | 10 | None | None | None | None | None |
| 1246 | 711694788429553666 | NaN | NaN | 2016-03-20 23:23:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711694788429553666/photo/1 | 13 | 10 | None | None | None | None | None |
| 1247 | 711652651650457602 | NaN | NaN | 2016-03-20 20:36:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711652651650457602/photo/1 | 9 | 10 | Gary | None | None | None | None |
| 1248 | 711363825979756544 | NaN | NaN | 2016-03-20 01:28:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711363825979756544/photo/1,https://twitter.com/dog_rates/status/711363825979756544/photo/1 | 11 | 10 | None | None | None | None | None |
| 1249 | 711306686208872448 | NaN | NaN | 2016-03-19 21:41:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711306686208872448/photo/1,https://twitter.com/dog_rates/status/711306686208872448/photo/1 | 3 | 10 | None | None | None | None | None |
| 1250 | 711008018775851008 | NaN | NaN | 2016-03-19 01:54:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711008018775851008/photo/1 | 11 | 10 | Chuckles | None | None | pupper | None |
| 1251 | 710997087345876993 | NaN | NaN | 2016-03-19 01:11:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710997087345876993/photo/1 | 12 | 10 | Milo | None | None | None | None |
| 1252 | 710844581445812225 | NaN | NaN | 2016-03-18 15:05:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710844581445812225/photo/1 | 10 | 10 | Staniel | None | None | None | None |
| 1253 | 710833117892898816 | NaN | NaN | 2016-03-18 14:19:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710833117892898816/photo/1 | 12 | 10 | Sora | None | None | None | None |
| 1254 | 710658690886586372 | NaN | NaN | 2016-03-18 02:46:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710658690886586372/photo/1 | 80 | 80 | None | None | None | None | None |
| 1255 | 710609963652087808 | NaN | NaN | 2016-03-17 23:33:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy | NaN | NaN | NaN | https://vine.co/v/idaTpwH5TgU | 12 | 10 | None | None | None | None | None |
| 1256 | 710588934686908417 | NaN | NaN | 2016-03-17 22:09:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1,https://twitter.com/dog_rates/status/710588934686908417/photo/1 | 12 | 10 | Beemo | None | None | None | None |
| 1257 | 710296729921429505 | NaN | NaN | 2016-03-17 02:48:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq | NaN | NaN | NaN | https://vine.co/v/iw9hUFAMerV | 12 | 10 | Oshie | None | None | None | None |
| 1258 | 710283270106132480 | NaN | NaN | 2016-03-17 01:55:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710283270106132480/photo/1,https://twitter.com/dog_rates/status/710283270106132480/photo/1 | 11 | 10 | Gunner | None | None | None | None |
| 1259 | 710272297844797440 | NaN | NaN | 2016-03-17 01:11:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710272297844797440/photo/1 | 11 | 10 | infuriating | None | None | None | None |
| 1260 | 710269109699739648 | NaN | NaN | 2016-03-17 00:58:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710269109699739648/photo/1 | 13 | 10 | None | None | None | None | None |
| 1261 | 710153181850935296 | NaN | NaN | 2016-03-16 17:18:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710153181850935296/photo/1,https://twitter.com/dog_rates/status/710153181850935296/photo/1 | 11 | 10 | Lacy | None | None | None | None |
| 1262 | 710140971284037632 | NaN | NaN | 2016-03-16 16:29:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710140971284037632/photo/1 | 8 | 10 | Tater | None | None | None | None |
| 1263 | 710117014656950272 | NaN | NaN | 2016-03-16 14:54:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710117014656950272/photo/1,https://twitter.com/dog_rates/status/710117014656950272/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1264 | 709918798883774466 | NaN | NaN | 2016-03-16 01:46:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709918798883774466/photo/1,https://twitter.com/dog_rates/status/709918798883774466/photo/1 | 12 | 10 | Watson | None | None | None | None |
| 1265 | 709901256215666688 | NaN | NaN | 2016-03-16 00:37:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r | NaN | NaN | NaN | http://goo.gl/ArWZfi,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1,https://twitter.com/dog_rates/status/709901256215666688/photo/1 | 12 | 10 | None | None | None | None | None |
| 1266 | 709852847387627521 | NaN | NaN | 2016-03-15 21:24:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1,https://twitter.com/dog_rates/status/709852847387627521/photo/1 | 12 | 10 | None | None | None | None | None |
| 1267 | 709566166965075968 | NaN | NaN | 2016-03-15 02:25:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709566166965075968/photo/1 | 12 | 10 | Olaf | None | None | None | None |
| 1268 | 709556954897764353 | NaN | NaN | 2016-03-15 01:48:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1,https://twitter.com/dog_rates/status/709556954897764353/photo/1 | 12 | 10 | Cecil | None | None | None | None |
| 1269 | 709519240576036864 | NaN | NaN | 2016-03-14 23:19:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709519240576036864/photo/1 | 9 | 10 | Vince | None | None | None | None |
| 1270 | 709449600415961088 | NaN | NaN | 2016-03-14 18:42:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709449600415961088/photo/1,https://twitter.com/dog_rates/status/709449600415961088/photo/1 | 10 | 10 | Karma | None | None | None | None |
| 1271 | 709409458133323776 | NaN | NaN | 2016-03-14 16:02:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709409458133323776/photo/1 | 8 | 10 | Billy | None | None | None | None |
| 1272 | 709225125749587968 | NaN | NaN | 2016-03-14 03:50:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709225125749587968/photo/1 | 11 | 10 | Walker | None | None | None | None |
| 1273 | 709207347839836162 | NaN | NaN | 2016-03-14 02:39:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709207347839836162/photo/1 | 11 | 10 | Penny | None | None | None | None |
| 1274 | 709198395643068416 | NaN | NaN | 2016-03-14 02:04:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709198395643068416/photo/1 | 45 | 50 | None | None | None | None | None |
| 1275 | 709179584944730112 | NaN | NaN | 2016-03-14 00:49:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF | NaN | NaN | NaN | https://vine.co/v/iwAjdlEjwMl | 13 | 10 | Sammy | None | None | None | None |
| 1276 | 709158332880297985 | NaN | NaN | 2016-03-13 23:24:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709158332880297985/photo/1 | 10 | 10 | Rodney | None | None | None | None |
| 1277 | 709042156699303936 | NaN | NaN | 2016-03-13 15:43:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709042156699303936/photo/1 | 9 | 10 | Klevin | None | None | None | None |
| 1278 | 708853462201716736 | NaN | NaN | 2016-03-13 03:13:29 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 | NaN | NaN | NaN | https://vine.co/v/iHl2UDEBZ95 | 8 | 10 | Lucy | None | None | None | None |
| 1279 | 708845821941387268 | NaN | NaN | 2016-03-13 02:43:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708845821941387268/photo/1,https://twitter.com/dog_rates/status/708845821941387268/photo/1 | 9 | 10 | None | None | None | pupper | None |
| 1280 | 708834316713893888 | NaN | NaN | 2016-03-13 01:57:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708834316713893888/photo/1 | 10 | 10 | Malikai | None | None | None | None |
| 1281 | 708810915978854401 | NaN | NaN | 2016-03-13 00:24:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1,https://twitter.com/dog_rates/status/708810915978854401/photo/1 | 10 | 10 | Mister | None | None | None | None |
| 1282 | 708738143638450176 | NaN | NaN | 2016-03-12 19:35:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708738143638450176/photo/1 | 11 | 10 | Coco | None | None | None | None |
| 1283 | 708711088997666817 | NaN | NaN | 2016-03-12 17:47:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708711088997666817/photo/1,https://twitter.com/dog_rates/status/708711088997666817/photo/1 | 11 | 10 | Smokey | None | None | None | None |
| 1284 | 708479650088034305 | NaN | NaN | 2016-03-12 02:28:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708479650088034305/photo/1 | 13 | 10 | Bear | None | None | None | None |
| 1285 | 708469915515297792 | NaN | NaN | 2016-03-12 01:49:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708469915515297792/photo/1 | 11 | 10 | Bobble | None | None | None | None |
| 1286 | 708400866336894977 | NaN | NaN | 2016-03-11 21:15:02 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY | NaN | NaN | NaN | https://vine.co/v/iHFqnjKVbIQ | 12 | 10 | None | None | None | None | None |
| 1287 | 708356463048204288 | NaN | NaN | 2016-03-11 18:18:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708356463048204288/photo/1,https://twitter.com/dog_rates/status/708356463048204288/photo/1 | 10 | 10 | Oliver | None | None | None | None |
| 1288 | 708349470027751425 | NaN | NaN | 2016-03-11 17:50:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708349470027751425/photo/1 | 11 | 10 | River | None | None | None | None |
| 1289 | 708149363256774660 | NaN | NaN | 2016-03-11 04:35:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708149363256774660/photo/1 | 10 | 10 | Jebberson | None | None | None | None |
| 1290 | 708130923141795840 | NaN | NaN | 2016-03-11 03:22:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708130923141795840/photo/1 | 11 | 10 | None | None | None | None | None |
| 1291 | 708119489313951744 | NaN | NaN | 2016-03-11 02:36:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708119489313951744/photo/1 | 9 | 10 | Cooper | None | None | None | None |
| 1292 | 708109389455101952 | NaN | NaN | 2016-03-11 01:56:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708109389455101952/photo/1 | 10 | 10 | Remington | None | None | None | None |
| 1293 | 708026248782585858 | NaN | NaN | 2016-03-10 20:26:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708026248782585858/video/1 | 13 | 10 | None | None | None | None | None |
| 1294 | 707995814724026368 | NaN | NaN | 2016-03-10 18:25:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707995814724026368/photo/1 | 12 | 10 | Farfle | None | None | None | None |
| 1295 | 707983188426153984 | 7.079801e+17 | 2.319108e+09 | 2016-03-10 17:35:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 1296 | 707969809498152960 | NaN | NaN | 2016-03-10 16:42:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707969809498152960/photo/1 | 11 | 10 | Rufus | None | None | None | None |
| 1297 | 707776935007539200 | NaN | NaN | 2016-03-10 03:55:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707776935007539200/photo/1 | 11 | 10 | Sadie | None | None | None | None |
| 1298 | 707741517457260545 | NaN | NaN | 2016-03-10 01:35:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707741517457260545/photo/1 | 10 | 10 | None | None | None | None | None |
| 1299 | 707738799544082433 | NaN | NaN | 2016-03-10 01:24:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN | NaN | NaN | NaN | https://vine.co/v/hUvHKYrdb1d | 12 | 10 | None | None | None | None | None |
| 1300 | 707693576495472641 | NaN | NaN | 2016-03-09 22:24:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707693576495472641/photo/1 | 7 | 10 | Jiminus | None | None | None | None |
| 1301 | 707629649552134146 | NaN | NaN | 2016-03-09 18:10:30 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh | NaN | NaN | NaN | https://vine.co/v/iHhBOTl5p9z | 10 | 10 | None | None | None | None | None |
| 1302 | 707610948723478529 | NaN | NaN | 2016-03-09 16:56:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707610948723478529/photo/1 | 12 | 10 | Harper | None | None | None | None |
| 1303 | 707420581654872064 | NaN | NaN | 2016-03-09 04:19:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707420581654872064/photo/1 | 4 | 10 | Keurig | None | None | None | None |
| 1304 | 707411934438625280 | NaN | NaN | 2016-03-09 03:45:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707411934438625280/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1305 | 707387676719185920 | NaN | NaN | 2016-03-09 02:08:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707387676719185920/photo/1 | 10 | 10 | Clarkus | None | None | None | None |
| 1306 | 707377100785885184 | NaN | NaN | 2016-03-09 01:26:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707377100785885184/photo/1,https://twitter.com/dog_rates/status/707377100785885184/photo/1 | 9 | 10 | None | None | None | None | None |
| 1307 | 707315916783140866 | NaN | NaN | 2016-03-08 21:23:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707315916783140866/photo/1,https://twitter.com/dog_rates/status/707315916783140866/photo/1 | 10 | 10 | Finnegus | None | None | pupper | None |
| 1308 | 707297311098011648 | NaN | NaN | 2016-03-08 20:09:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707297311098011648/photo/1,https://twitter.com/dog_rates/status/707297311098011648/photo/1 | 10 | 10 | Cassie | None | None | None | None |
| 1309 | 707059547140169728 | NaN | NaN | 2016-03-08 04:25:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707059547140169728/photo/1,https://twitter.com/dog_rates/status/707059547140169728/photo/1 | 11 | 10 | Cupcake | None | None | None | None |
| 1310 | 707038192327901184 | NaN | NaN | 2016-03-08 03:00:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707038192327901184/photo/1,https://twitter.com/dog_rates/status/707038192327901184/photo/1 | 10 | 10 | Kathmandu | None | None | None | None |
| 1311 | 707021089608753152 | NaN | NaN | 2016-03-08 01:52:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707021089608753152/photo/1,https://twitter.com/dog_rates/status/707021089608753152/photo/1 | 12 | 10 | Tucker | None | None | None | None |
| 1312 | 707014260413456384 | NaN | NaN | 2016-03-08 01:25:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707014260413456384/photo/1 | 11 | 10 | Ellie | None | None | None | None |
| 1313 | 706904523814649856 | NaN | NaN | 2016-03-07 18:09:06 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f | NaN | NaN | NaN | https://vine.co/v/iXQAm5Lrgrh | 13 | 10 | None | None | None | None | None |
| 1314 | 706901761596989440 | NaN | NaN | 2016-03-07 17:58:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706901761596989440/photo/1 | 3 | 10 | Elliot | None | None | None | None |
| 1315 | 706681918348251136 | NaN | NaN | 2016-03-07 03:24:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1,https://twitter.com/dog_rates/status/706681918348251136/photo/1 | 12 | 10 | Katie | None | None | None | None |
| 1316 | 706644897839910912 | NaN | NaN | 2016-03-07 00:57:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706644897839910912/video/1 | 9 | 10 | Shadow | None | None | None | None |
| 1317 | 706593038911545345 | NaN | NaN | 2016-03-06 21:31:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706593038911545345/photo/1 | 10 | 10 | None | None | None | None | None |
| 1318 | 706538006853918722 | NaN | NaN | 2016-03-06 17:52:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706538006853918722/photo/1 | 11 | 10 | Oliver | None | None | None | None |
| 1319 | 706516534877929472 | NaN | NaN | 2016-03-06 16:27:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706516534877929472/photo/1 | 12 | 10 | None | None | None | None | None |
| 1320 | 706346369204748288 | NaN | NaN | 2016-03-06 05:11:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706346369204748288/photo/1,https://twitter.com/dog_rates/status/706346369204748288/photo/1 | 12 | 10 | Koda | None | None | None | None |
| 1321 | 706310011488698368 | NaN | NaN | 2016-03-06 02:46:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706310011488698368/photo/1,https://twitter.com/dog_rates/status/706310011488698368/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1322 | 706291001778950144 | NaN | NaN | 2016-03-06 01:31:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706291001778950144/photo/1,https://twitter.com/dog_rates/status/706291001778950144/photo/1 | 11 | 10 | None | None | None | None | None |
| 1323 | 706265994973601792 | NaN | NaN | 2016-03-05 23:51:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706265994973601792/photo/1 | 11 | 10 | Kara | None | None | None | None |
| 1324 | 706169069255446529 | NaN | NaN | 2016-03-05 17:26:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR | NaN | NaN | NaN | https://twitter.com/wgnnews/status/706165920809492480 | 12 | 10 | None | None | None | None | None |
| 1325 | 706166467411222528 | NaN | NaN | 2016-03-05 17:16:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706166467411222528/photo/1 | 7 | 10 | Dexter | None | None | None | None |
| 1326 | 706153300320784384 | NaN | NaN | 2016-03-05 16:24:01 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 | NaN | NaN | NaN | https://vine.co/v/iXidJXBJ3P9 | 13 | 10 | Layla | None | None | None | None |
| 1327 | 705975130514706432 | NaN | NaN | 2016-03-05 04:36:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705975130514706432/photo/1,https://twitter.com/dog_rates/status/705975130514706432/photo/1 | 10 | 10 | Adele | None | None | pupper | None |
| 1328 | 705970349788291072 | NaN | NaN | 2016-03-05 04:17:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705970349788291072/photo/1 | 12 | 10 | Lucy | None | None | None | None |
| 1329 | 705898680587526145 | NaN | NaN | 2016-03-04 23:32:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705898680587526145/photo/1,https://twitter.com/dog_rates/status/705898680587526145/photo/1 | 10 | 10 | Max | None | None | None | None |
| 1330 | 705786532653883392 | 7.032559e+17 | 4.196984e+09 | 2016-03-04 16:06:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705786532653883392/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1331 | 705591895322394625 | NaN | NaN | 2016-03-04 03:13:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705591895322394625/photo/1 | 11 | 10 | None | None | None | None | None |
| 1332 | 705475953783398401 | NaN | NaN | 2016-03-03 19:32:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705475953783398401/photo/1,https://twitter.com/dog_rates/status/705475953783398401/photo/1 | 12 | 10 | Zara | None | None | None | None |
| 1333 | 705442520700944385 | NaN | NaN | 2016-03-03 17:19:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705442520700944385/photo/1 | 12 | 10 | Cooper | None | None | None | None |
| 1334 | 705428427625635840 | NaN | NaN | 2016-03-03 16:23:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705428427625635840/photo/1 | 11 | 10 | Ambrose | None | None | pupper | None |
| 1335 | 705239209544720384 | NaN | NaN | 2016-03-03 03:51:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705239209544720384/photo/1 | 11 | 10 | Jimothy | None | None | None | None |
| 1336 | 705223444686888960 | NaN | NaN | 2016-03-03 02:49:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705223444686888960/photo/1 | 9 | 10 | Bode | None | None | None | None |
| 1337 | 705102439679201280 | NaN | NaN | 2016-03-02 18:48:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705102439679201280/photo/1 | 10 | 10 | Terrenth | None | None | None | None |
| 1338 | 705066031337840642 | NaN | NaN | 2016-03-02 16:23:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705066031337840642/photo/1 | 12 | 10 | Reese | None | None | None | None |
| 1339 | 704871453724954624 | 6.671522e+17 | 4.196984e+09 | 2016-03-02 03:30:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704871453724954624/photo/1 | 12 | 10 | None | None | None | None | None |
| 1340 | 704859558691414016 | NaN | NaN | 2016-03-02 02:43:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704859558691414016/photo/1 | 10 | 10 | a | None | None | pupper | None |
| 1341 | 704847917308362754 | NaN | NaN | 2016-03-02 01:56:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704847917308362754/photo/1 | 12 | 10 | None | None | None | None | None |
| 1342 | 704819833553219584 | NaN | NaN | 2016-03-02 00:05:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704819833553219584/photo/1 | 7 | 10 | Chesterson | None | None | None | None |
| 1343 | 704761120771465216 | NaN | NaN | 2016-03-01 20:11:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704761120771465216/photo/1,https://twitter.com/dog_rates/status/704761120771465216/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1344 | 704499785726889984 | NaN | NaN | 2016-03-01 02:53:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704499785726889984/photo/1 | 12 | 10 | None | None | None | None | None |
| 1345 | 704491224099647488 | 7.044857e+17 | 2.878549e+07 | 2016-03-01 02:19:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13/10 hero af\n@ABC | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1346 | 704480331685040129 | NaN | NaN | 2016-03-01 01:36:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704480331685040129/photo/1 | 11 | 10 | Lucia | None | None | None | None |
| 1347 | 704364645503647744 | NaN | NaN | 2016-02-29 17:56:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704364645503647744/photo/1,https://twitter.com/dog_rates/status/704364645503647744/photo/1 | 12 | 10 | Bisquick | None | None | None | None |
| 1348 | 704347321748819968 | NaN | NaN | 2016-02-29 16:47:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704347321748819968/photo/1 | 10 | 10 | Ralphson | None | None | pupper | None |
| 1349 | 704134088924532736 | NaN | NaN | 2016-02-29 02:40:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j | NaN | NaN | NaN | https://vine.co/v/igW2OEwu9vg | 12 | 10 | None | None | None | pupper | None |
| 1350 | 704113298707505153 | NaN | NaN | 2016-02-29 01:17:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704113298707505153/photo/1,https://twitter.com/dog_rates/status/704113298707505153/photo/1 | 8 | 10 | Stanley | None | None | None | None |
| 1351 | 704054845121142784 | NaN | NaN | 2016-02-28 21:25:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704054845121142784/photo/1 | 60 | 50 | a | None | None | None | None |
| 1352 | 703774238772166656 | NaN | NaN | 2016-02-28 02:50:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703774238772166656/photo/1 | 10 | 10 | None | None | None | None | None |
| 1353 | 703769065844768768 | NaN | NaN | 2016-02-28 02:29:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703769065844768768/photo/1,https://twitter.com/dog_rates/status/703769065844768768/photo/1 | 10 | 10 | None | None | None | None | None |
| 1354 | 703631701117943808 | NaN | NaN | 2016-02-27 17:24:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1,https://twitter.com/dog_rates/status/703631701117943808/photo/1 | 11 | 10 | Bella | None | None | None | None |
| 1355 | 703611486317502464 | NaN | NaN | 2016-02-27 16:03:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703611486317502464/photo/1 | 10 | 10 | Scooter | None | None | pupper | None |
| 1356 | 703425003149250560 | 7.030419e+17 | 4.196984e+09 | 2016-02-27 03:42:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703425003149250560/photo/1 | 9 | 10 | None | None | None | None | None |
| 1357 | 703407252292673536 | NaN | NaN | 2016-02-27 02:32:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703407252292673536/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1358 | 703382836347330562 | NaN | NaN | 2016-02-27 00:55:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703382836347330562/photo/1,https://twitter.com/dog_rates/status/703382836347330562/photo/1 | 12 | 10 | Charlie | None | None | None | None |
| 1359 | 703356393781329922 | NaN | NaN | 2016-02-26 23:10:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703356393781329922/photo/1 | 9 | 10 | Socks | None | None | None | None |
| 1360 | 703268521220972544 | NaN | NaN | 2016-02-26 17:20:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703268521220972544/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1361 | 703079050210877440 | NaN | NaN | 2016-02-26 04:48:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703079050210877440/photo/1,https://twitter.com/dog_rates/status/703079050210877440/photo/1 | 11 | 10 | a | None | None | None | None |
| 1362 | 703041949650034688 | NaN | NaN | 2016-02-26 02:20:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703041949650034688/photo/1 | 10 | 10 | an | None | None | None | None |
| 1363 | 702932127499816960 | NaN | NaN | 2016-02-25 19:04:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702932127499816960/photo/1 | 6 | 10 | Chip | None | None | None | None |
| 1364 | 702899151802126337 | NaN | NaN | 2016-02-25 16:53:11 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw | NaN | NaN | NaN | https://vine.co/v/i6iIrBwnTFI | 12 | 10 | Luna | None | None | None | None |
| 1365 | 702684942141153280 | NaN | NaN | 2016-02-25 02:42:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702684942141153280/photo/1 | 11 | 10 | Lucy | None | None | None | None |
| 1366 | 702671118226825216 | NaN | NaN | 2016-02-25 01:47:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702671118226825216/photo/1 | 10 | 10 | Rambo | None | None | None | None |
| 1367 | 702598099714314240 | NaN | NaN | 2016-02-24 20:56:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702598099714314240/photo/1 | 11 | 10 | Sansa | None | None | pupper | None |
| 1368 | 702539513671897089 | NaN | NaN | 2016-02-24 17:04:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1,https://twitter.com/dog_rates/status/702539513671897089/photo/1 | 12 | 10 | a | None | None | None | None |
| 1369 | 702332542343577600 | NaN | NaN | 2016-02-24 03:21:41 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd | NaN | NaN | NaN | https://vine.co/v/irlDujgwOjd | 13 | 10 | Rudy | None | None | None | None |
| 1370 | 702321140488925184 | NaN | NaN | 2016-02-24 02:36:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1,https://twitter.com/dog_rates/status/702321140488925184/photo/1 | 12 | 10 | None | None | None | None | None |
| 1371 | 702276748847800320 | NaN | NaN | 2016-02-23 23:39:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702276748847800320/photo/1 | 11 | 10 | None | None | None | None | None |
| 1372 | 702217446468493312 | NaN | NaN | 2016-02-23 19:44:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702217446468493312/photo/1 | 9 | 10 | None | None | None | None | None |
| 1373 | 701981390485725185 | NaN | NaN | 2016-02-23 04:06:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701981390485725185/photo/1 | 12 | 10 | Fiji | None | None | None | None |
| 1374 | 701952816642965504 | NaN | NaN | 2016-02-23 02:12:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701952816642965504/photo/1 | 11 | 10 | Rilo | None | None | None | None |
| 1375 | 701889187134500865 | NaN | NaN | 2016-02-22 21:59:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701889187134500865/photo/1 | 11 | 10 | Bilbo | None | None | None | None |
| 1376 | 701805642395348998 | NaN | NaN | 2016-02-22 16:27:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr | NaN | NaN | NaN | https://vine.co/v/ivV6Y37mH5Z | 11 | 10 | None | None | None | pupper | None |
| 1377 | 701601587219795968 | NaN | NaN | 2016-02-22 02:57:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701601587219795968/photo/1 | 10 | 10 | Coopson | None | None | None | None |
| 1378 | 701570477911896070 | NaN | NaN | 2016-02-22 00:53:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701570477911896070/photo/1,https://twitter.com/dog_rates/status/701570477911896070/photo/1 | 9 | 10 | Yoda | None | None | None | None |
| 1379 | 701545186879471618 | NaN | NaN | 2016-02-21 23:13:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701545186879471618/photo/1 | 10 | 10 | Millie | None | None | pupper | None |
| 1380 | 701214700881756160 | NaN | NaN | 2016-02-21 01:19:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701214700881756160/photo/1 | 12 | 10 | None | None | None | None | None |
| 1381 | 700890391244103680 | NaN | NaN | 2016-02-20 03:51:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700890391244103680/photo/1 | 11 | 10 | Chet | None | None | None | None |
| 1382 | 700864154249383937 | NaN | NaN | 2016-02-20 02:06:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700864154249383937/photo/1 | 12 | 10 | a | None | None | pupper | None |
| 1383 | 700847567345688576 | NaN | NaN | 2016-02-20 01:00:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700847567345688576/photo/1 | 10 | 10 | Crouton | None | None | None | None |
| 1384 | 700796979434098688 | NaN | NaN | 2016-02-19 21:39:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700796979434098688/photo/1 | 7 | 10 | Daniel | None | None | None | None |
| 1385 | 700747788515020802 | NaN | NaN | 2016-02-19 18:24:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700747788515020802/photo/1 | 11 | 10 | very | None | None | None | None |
| 1386 | 700518061187723268 | NaN | NaN | 2016-02-19 03:11:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700518061187723268/photo/1 | 10 | 10 | Vincent | None | None | None | None |
| 1387 | 700505138482569216 | NaN | NaN | 2016-02-19 02:20:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1,https://twitter.com/dog_rates/status/700505138482569216/photo/1 | 12 | 10 | Kaia | None | None | None | None |
| 1388 | 700462010979500032 | NaN | NaN | 2016-02-18 23:28:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700462010979500032/photo/1 | 6 | 10 | Murphy | None | None | None | None |
| 1389 | 700167517596164096 | NaN | NaN | 2016-02-18 03:58:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700167517596164096/photo/1 | 10 | 10 | Dotsy | None | None | None | None |
| 1390 | 700151421916807169 | NaN | NaN | 2016-02-18 02:54:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700151421916807169/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1391 | 700143752053182464 | NaN | NaN | 2016-02-18 02:24:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700143752053182464/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1392 | 700062718104104960 | NaN | NaN | 2016-02-17 21:02:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700062718104104960/photo/1 | 6 | 10 | Eazy | None | None | None | None |
| 1393 | 700029284593901568 | NaN | NaN | 2016-02-17 18:49:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700029284593901568/photo/1 | 10 | 10 | Coops | None | None | None | None |
| 1394 | 700002074055016451 | NaN | NaN | 2016-02-17 17:01:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700002074055016451/photo/1 | 9 | 10 | Thumas | None | None | None | None |
| 1395 | 699801817392291840 | NaN | NaN | 2016-02-17 03:45:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1,https://twitter.com/dog_rates/status/699801817392291840/photo/1 | 11 | 10 | Cooper | None | None | pupper | None |
| 1396 | 699788877217865730 | NaN | NaN | 2016-02-17 02:54:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699788877217865730/photo/1 | 12 | 10 | Nala | None | None | None | None |
| 1397 | 699779630832685056 | NaN | NaN | 2016-02-17 02:17:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Take all my money. 10/10 https://t.co/B28ebc5LzQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699779630832685056/photo/1,https://twitter.com/dog_rates/status/699779630832685056/photo/1 | 10 | 10 | None | None | None | None | None |
| 1398 | 699775878809702401 | NaN | NaN | 2016-02-17 02:02:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699775878809702401/photo/1 | 11 | 10 | Fillup | None | None | None | None |
| 1399 | 699691744225525762 | NaN | NaN | 2016-02-16 20:28:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699691744225525762/photo/1 | 5 | 10 | Dave | None | None | None | None |
| 1400 | 699446877801091073 | NaN | NaN | 2016-02-16 04:15:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1,https://twitter.com/dog_rates/status/699446877801091073/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 1401 | 699434518667751424 | NaN | NaN | 2016-02-16 03:25:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699434518667751424/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1402 | 699423671849451520 | NaN | NaN | 2016-02-16 02:42:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699423671849451520/photo/1 | 10 | 10 | None | None | None | None | None |
| 1403 | 699413908797464576 | NaN | NaN | 2016-02-16 02:04:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699413908797464576/photo/1 | 11 | 10 | Miley | None | None | None | None |
| 1404 | 699370870310113280 | NaN | NaN | 2016-02-15 23:13:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699370870310113280/photo/1 | 11 | 10 | Calbert | None | None | None | None |
| 1405 | 699323444782047232 | NaN | NaN | 2016-02-15 20:04:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699323444782047232/photo/1 | 10 | 10 | None | None | None | None | None |
| 1406 | 699088579889332224 | NaN | NaN | 2016-02-15 04:31:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699088579889332224/photo/1 | 3 | 10 | Charl | None | None | None | None |
| 1407 | 699079609774645248 | NaN | NaN | 2016-02-15 03:55:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1,https://twitter.com/dog_rates/status/699079609774645248/photo/1 | 8 | 10 | Reagan | None | None | None | None |
| 1408 | 699072405256409088 | NaN | NaN | 2016-02-15 03:27:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699072405256409088/video/1 | 12 | 10 | None | None | None | None | None |
| 1409 | 699060279947165696 | NaN | NaN | 2016-02-15 02:38:53 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il | NaN | NaN | NaN | https://vine.co/v/inlmMHxtqDD | 12 | 10 | Yukon | None | None | None | None |
| 1410 | 699036661657767936 | NaN | NaN | 2016-02-15 01:05:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699036661657767936/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1411 | 698989035503689728 | NaN | NaN | 2016-02-14 21:55:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698989035503689728/photo/1 | 13 | 10 | Oliver | None | None | None | None |
| 1412 | 698953797952008193 | NaN | NaN | 2016-02-14 19:35:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698953797952008193/photo/1 | 11 | 10 | CeCe | None | None | None | None |
| 1413 | 698907974262222848 | NaN | NaN | 2016-02-14 16:33:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1,https://twitter.com/dog_rates/status/698907974262222848/photo/1 | 10 | 10 | None | None | None | None | None |
| 1414 | 698710712454139905 | NaN | NaN | 2016-02-14 03:29:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698710712454139905/photo/1 | 10 | 10 | Cuddles | None | None | None | None |
| 1415 | 698703483621523456 | NaN | NaN | 2016-02-14 03:01:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698703483621523456/photo/1 | 7 | 10 | Rusty | None | None | None | None |
| 1416 | 698635131305795584 | NaN | NaN | 2016-02-13 22:29:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698635131305795584/video/1 | 12 | 10 | None | None | None | None | None |
| 1417 | 698549713696649216 | NaN | NaN | 2016-02-13 16:50:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698549713696649216/photo/1 | 9 | 10 | Claude | None | None | None | None |
| 1418 | 698355670425473025 | NaN | NaN | 2016-02-13 03:59:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698355670425473025/photo/1 | 10 | 10 | Jessiga | None | None | None | None |
| 1419 | 698342080612007937 | NaN | NaN | 2016-02-13 03:05:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698342080612007937/video/1 | 11 | 10 | Maximus | None | None | None | None |
| 1420 | 698262614669991936 | NaN | NaN | 2016-02-12 21:49:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698262614669991936/photo/1 | 11 | 10 | Franklin | None | None | None | None |
| 1421 | 698195409219559425 | NaN | NaN | 2016-02-12 17:22:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698195409219559425/photo/1 | 9 | 10 | Beau | None | None | None | None |
| 1422 | 698178924120031232 | NaN | NaN | 2016-02-12 16:16:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698178924120031232/photo/1 | 10 | 10 | Lily | None | None | None | None |
| 1423 | 697995514407682048 | NaN | NaN | 2016-02-12 04:07:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697995514407682048/photo/1 | 11 | 10 | None | None | None | None | None |
| 1424 | 697990423684476929 | NaN | NaN | 2016-02-12 03:47:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1,https://twitter.com/dog_rates/status/697990423684476929/photo/1 | 11 | 10 | Doug | None | None | None | None |
| 1425 | 697943111201378304 | NaN | NaN | 2016-02-12 00:39:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697943111201378304/photo/1 | 10 | 10 | Cassie | None | None | None | None |
| 1426 | 697881462549430272 | NaN | NaN | 2016-02-11 20:34:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697881462549430272/photo/1 | 10 | 10 | Carter | None | None | None | None |
| 1427 | 697630435728322560 | NaN | NaN | 2016-02-11 03:57:11 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP | NaN | NaN | NaN | https://vine.co/v/in7ZzHPKzWz | 8 | 10 | None | None | None | None | None |
| 1428 | 697616773278015490 | NaN | NaN | 2016-02-11 03:02:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697616773278015490/photo/1,https://twitter.com/dog_rates/status/697616773278015490/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1429 | 697596423848730625 | NaN | NaN | 2016-02-11 01:42:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697596423848730625/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1430 | 697575480820686848 | NaN | NaN | 2016-02-11 00:18:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697575480820686848/photo/1 | 8 | 10 | Ole | None | None | None | None |
| 1431 | 697516214579523584 | NaN | NaN | 2016-02-10 20:23:19 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT | NaN | NaN | NaN | https://vine.co/v/i1LriMBmX6W | 9 | 10 | Pherb | None | None | None | None |
| 1432 | 697482927769255936 | NaN | NaN | 2016-02-10 18:11:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697482927769255936/photo/1 | 11 | 10 | Blipson | None | None | None | None |
| 1433 | 697463031882764288 | NaN | NaN | 2016-02-10 16:51:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697463031882764288/photo/1 | 44 | 40 | None | None | None | None | None |
| 1434 | 697270446429966336 | NaN | NaN | 2016-02-10 04:06:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697270446429966336/photo/1 | 10 | 10 | Bentley | None | None | None | None |
| 1435 | 697259378236399616 | NaN | NaN | 2016-02-10 03:22:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697259378236399616/photo/1 | 8 | 10 | getting | None | None | None | None |
| 1436 | 697255105972801536 | NaN | NaN | 2016-02-10 03:05:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697255105972801536/photo/1 | 10 | 10 | Charlie | None | None | None | None |
| 1437 | 697242256848379904 | NaN | NaN | 2016-02-10 02:14:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697242256848379904/photo/1 | 10 | 10 | Oakley | None | None | None | None |
| 1438 | 696900204696625153 | NaN | NaN | 2016-02-09 03:35:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696900204696625153/photo/1 | 12 | 10 | Rosie | None | None | None | None |
| 1439 | 696894894812565505 | NaN | NaN | 2016-02-09 03:14:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696894894812565505/photo/1 | 9 | 10 | None | None | None | None | None |
| 1440 | 696886256886657024 | NaN | NaN | 2016-02-09 02:40:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696886256886657024/photo/1 | 12 | 10 | None | None | None | None | None |
| 1441 | 696877980375769088 | NaN | NaN | 2016-02-09 02:07:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696877980375769088/photo/1 | 9 | 10 | Misty | None | None | pupper | None |
| 1442 | 696754882863349760 | NaN | NaN | 2016-02-08 17:58:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696754882863349760/photo/1 | 10 | 10 | Reptar | None | None | None | None |
| 1443 | 696744641916489729 | NaN | NaN | 2016-02-08 17:17:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 | NaN | NaN | NaN | https://vine.co/v/i1wrljBUjAu | 10 | 10 | Klevin | None | None | None | None |
| 1444 | 696713835009417216 | NaN | NaN | 2016-02-08 15:14:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696713835009417216/photo/1 | 9 | 10 | Trevith | None | None | pupper | None |
| 1445 | 696518437233913856 | NaN | NaN | 2016-02-08 02:18:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh my god 10/10 for every little hot dog pupper | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | pupper | None |
| 1446 | 696490539101908992 | 6.964887e+17 | 4.196984e+09 | 2016-02-08 00:27:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 1447 | 696488710901260288 | NaN | NaN | 2016-02-08 00:20:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 revolutionary af https://t.co/zKzq4nIY86 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696488710901260288/photo/1 | 12 | 10 | None | None | None | None | None |
| 1448 | 696405997980676096 | NaN | NaN | 2016-02-07 18:51:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696405997980676096/photo/1 | 7 | 10 | Berb | None | None | None | None |
| 1449 | 696100768806522880 | NaN | NaN | 2016-02-06 22:38:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx | NaN | NaN | NaN | https://vine.co/v/i1KWj0vbvA9 | 10 | 10 | None | None | None | pupper | None |
| 1450 | 695816827381944320 | NaN | NaN | 2016-02-06 03:50:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695816827381944320/photo/1 | 11 | 10 | None | None | None | None | None |
| 1451 | 695794761660297217 | NaN | NaN | 2016-02-06 02:22:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695794761660297217/photo/1 | 13 | 10 | Wyatt | None | None | None | None |
| 1452 | 695767669421768709 | 6.753494e+17 | 4.196984e+09 | 2016-02-06 00:35:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695767669421768709/photo/1 | 13 | 10 | None | None | None | None | None |
| 1453 | 695629776980148225 | NaN | NaN | 2016-02-05 15:27:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695629776980148225/photo/1,https://twitter.com/dog_rates/status/695629776980148225/photo/1 | 8 | 10 | Calvin | None | None | None | None |
| 1454 | 695446424020918272 | NaN | NaN | 2016-02-05 03:18:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695446424020918272/photo/1 | 12 | 10 | None | None | None | None | None |
| 1455 | 695409464418041856 | NaN | NaN | 2016-02-05 00:51:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695409464418041856/photo/1 | 10 | 10 | Bob | None | None | None | None |
| 1456 | 695314793360662529 | NaN | NaN | 2016-02-04 18:35:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1,https://twitter.com/dog_rates/status/695314793360662529/photo/1 | 10 | 10 | Colin | None | None | None | None |
| 1457 | 695095422348574720 | NaN | NaN | 2016-02-04 04:03:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695095422348574720/photo/1 | 12 | 10 | just | None | None | pupper | None |
| 1458 | 695074328191332352 | NaN | NaN | 2016-02-04 02:40:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695074328191332352/photo/1 | 11 | 10 | Lorenzo | None | None | pupper | None |
| 1459 | 695064344191721472 | NaN | NaN | 2016-02-04 02:00:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695064344191721472/video/1 | 4 | 10 | None | None | None | None | None |
| 1460 | 695051054296211456 | NaN | NaN | 2016-02-04 01:07:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695051054296211456/photo/1,https://twitter.com/dog_rates/status/695051054296211456/photo/1 | 6 | 10 | Brian | None | None | None | None |
| 1461 | 694925794720792577 | NaN | NaN | 2016-02-03 16:49:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 | NaN | NaN | NaN | https://vine.co/v/iJvUqWQ166L | 5 | 10 | None | None | None | None | None |
| 1462 | 694905863685980160 | NaN | NaN | 2016-02-03 15:30:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694905863685980160/photo/1 | 10 | 10 | Archie | None | None | None | None |
| 1463 | 694669722378485760 | NaN | NaN | 2016-02-02 23:52:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694669722378485760/photo/1,https://twitter.com/dog_rates/status/694669722378485760/photo/1 | 12 | 10 | Phil | None | None | None | None |
| 1464 | 694356675654983680 | 6.706684e+17 | 4.196984e+09 | 2016-02-02 03:08:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694356675654983680/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1465 | 694352839993344000 | NaN | NaN | 2016-02-02 02:53:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1,https://twitter.com/dog_rates/status/694352839993344000/photo/1 | 10 | 10 | Oliviér | None | None | None | None |
| 1466 | 694342028726001664 | NaN | NaN | 2016-02-02 02:10:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb | NaN | NaN | NaN | https://vine.co/v/iJWKejYdLlh | 11 | 10 | None | None | None | None | None |
| 1467 | 694329668942569472 | NaN | NaN | 2016-02-02 01:21:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694329668942569472/photo/1 | 9 | 10 | Grady | None | None | pupper | None |
| 1468 | 694206574471057408 | NaN | NaN | 2016-02-01 17:11:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694206574471057408/photo/1 | 10 | 10 | None | None | None | None | None |
| 1469 | 694183373896572928 | NaN | NaN | 2016-02-01 15:39:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694183373896572928/photo/1,https://twitter.com/dog_rates/status/694183373896572928/photo/1 | 9 | 10 | Lola | None | None | None | None |
| 1470 | 694001791655137281 | NaN | NaN | 2016-02-01 03:38:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694001791655137281/photo/1,https://twitter.com/dog_rates/status/694001791655137281/photo/1 | 11 | 10 | Chester | None | None | None | None |
| 1471 | 693993230313091072 | NaN | NaN | 2016-02-01 03:04:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H | NaN | NaN | NaN | https://vine.co/v/i5ETazP5hrm | 12 | 10 | None | None | None | None | None |
| 1472 | 693942351086120961 | NaN | NaN | 2016-01-31 23:42:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693942351086120961/photo/1 | 10 | 10 | Kobe | None | None | None | None |
| 1473 | 693647888581312512 | NaN | NaN | 2016-01-31 04:11:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693647888581312512/photo/1 | 7 | 10 | None | None | None | None | None |
| 1474 | 693644216740769793 | 6.936422e+17 | 4.196984e+09 | 2016-01-31 03:57:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 1475 | 693642232151285760 | NaN | NaN | 2016-01-31 03:49:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693642232151285760/photo/1 | 9 | 10 | Freddery | None | None | None | None |
| 1476 | 693629975228977152 | NaN | NaN | 2016-01-31 03:00:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693629975228977152/photo/1,https://twitter.com/dog_rates/status/693629975228977152/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1477 | 693622659251335168 | NaN | NaN | 2016-01-31 02:31:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693622659251335168/photo/1 | 10 | 10 | None | None | None | None | None |
| 1478 | 693590843962331137 | NaN | NaN | 2016-01-31 00:25:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693590843962331137/photo/1 | 3 | 10 | Phil | None | None | pupper | None |
| 1479 | 693582294167244802 | 6.935722e+17 | 1.198989e+09 | 2016-01-30 23:51:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 1480 | 693486665285931008 | NaN | NaN | 2016-01-30 17:31:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693486665285931008/video/1 | 11 | 10 | Lincoln | None | None | None | None |
| 1481 | 693280720173801472 | NaN | NaN | 2016-01-30 03:52:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693280720173801472/photo/1 | 10 | 10 | Sadie | None | None | None | None |
| 1482 | 693267061318012928 | NaN | NaN | 2016-01-30 02:58:42 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM | NaN | NaN | NaN | https://vine.co/v/i5n2irFUYWv | 12 | 10 | Oscar | None | None | None | None |
| 1483 | 693262851218264065 | NaN | NaN | 2016-01-30 02:41:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693262851218264065/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1484 | 693231807727280129 | NaN | NaN | 2016-01-30 00:38:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693231807727280129/photo/1 | 9 | 10 | Bodie | None | None | None | None |
| 1485 | 693155686491000832 | NaN | NaN | 2016-01-29 19:36:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1,https://twitter.com/dog_rates/status/693155686491000832/photo/1 | 12 | 10 | Dunkin | None | None | None | None |
| 1486 | 693109034023534592 | NaN | NaN | 2016-01-29 16:30:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693109034023534592/video/1 | 11 | 10 | None | None | None | None | None |
| 1487 | 693095443459342336 | NaN | NaN | 2016-01-29 15:36:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693095443459342336/photo/1 | 10 | 10 | Milo | None | None | pupper | None |
| 1488 | 692919143163629568 | NaN | NaN | 2016-01-29 03:56:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692919143163629568/photo/1 | 9 | 10 | None | None | None | None | None |
| 1489 | 692905862751522816 | NaN | NaN | 2016-01-29 03:03:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692905862751522816/photo/1 | 10 | 10 | Wally | None | None | pupper | None |
| 1490 | 692901601640583168 | NaN | NaN | 2016-01-29 02:46:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Fuck the system" 10/10 https://t.co/N0OADmCnVV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692901601640583168/photo/1 | 10 | 10 | None | None | None | None | None |
| 1491 | 692894228850999298 | NaN | NaN | 2016-01-29 02:17:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692894228850999298/photo/1 | 10 | 10 | Tupawc | None | None | None | None |
| 1492 | 692828166163931137 | NaN | NaN | 2016-01-28 21:54:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692828166163931137/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1493 | 692752401762250755 | NaN | NaN | 2016-01-28 16:53:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692752401762250755/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1494 | 692568918515392513 | NaN | NaN | 2016-01-28 04:44:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1,https://twitter.com/dog_rates/status/692568918515392513/photo/1 | 12 | 10 | Chester | None | None | None | None |
| 1495 | 692535307825213440 | NaN | NaN | 2016-01-28 02:30:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692535307825213440/photo/1 | 10 | 10 | Amber | None | None | None | None |
| 1496 | 692530551048294401 | NaN | NaN | 2016-01-28 02:12:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692530551048294401/photo/1 | 10 | 10 | Cody | None | None | None | None |
| 1497 | 692423280028966913 | 6.924173e+17 | 4.196984e+09 | 2016-01-27 19:05:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 | NaN | NaN | NaN | NaN | 9 | 10 | None | None | None | None | None |
| 1498 | 692417313023332352 | NaN | NaN | 2016-01-27 18:42:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692417313023332352/photo/1 | 7 | 10 | Herschel | None | None | pupper | None |
| 1499 | 692187005137076224 | NaN | NaN | 2016-01-27 03:26:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1,https://twitter.com/dog_rates/status/692187005137076224/photo/1 | 12 | 10 | a | None | None | None | None |
| 1500 | 692158366030913536 | NaN | NaN | 2016-01-27 01:33:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692158366030913536/photo/1 | 10 | 10 | Edgar | None | None | None | None |
| 1501 | 692142790915014657 | 6.920419e+17 | 4.196984e+09 | 2016-01-27 00:31:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1,https://twitter.com/dog_rates/status/692142790915014657/photo/1 | 13 | 10 | None | None | None | None | None |
| 1502 | 692041934689402880 | NaN | NaN | 2016-01-26 17:50:29 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y | NaN | NaN | NaN | https://vine.co/v/iiI3wmqXYmA | 13 | 10 | Teddy | None | None | None | None |
| 1503 | 692017291282812928 | NaN | NaN | 2016-01-26 16:12:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692017291282812928/photo/1 | 9 | 10 | Kingsley | None | None | None | None |
| 1504 | 691820333922455552 | NaN | NaN | 2016-01-26 03:09:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691820333922455552/photo/1 | 8 | 10 | Brockly | None | None | None | None |
| 1505 | 691793053716221953 | NaN | NaN | 2016-01-26 01:21:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo | NaN | NaN | NaN | https://vine.co/v/OTTVAKw6YlW | 10 | 10 | None | None | None | None | None |
| 1506 | 691756958957883396 | NaN | NaN | 2016-01-25 22:58:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691756958957883396/photo/1 | 10 | 10 | None | None | None | None | None |
| 1507 | 691675652215414786 | NaN | NaN | 2016-01-25 17:35:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691675652215414786/photo/1 | 10 | 10 | Richie | None | None | None | None |
| 1508 | 691483041324204033 | NaN | NaN | 2016-01-25 04:49:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1,https://twitter.com/dog_rates/status/691483041324204033/photo/1 | 5 | 10 | None | None | None | None | None |
| 1509 | 691459709405118465 | NaN | NaN | 2016-01-25 03:16:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691459709405118465/photo/1,https://twitter.com/dog_rates/status/691459709405118465/photo/1 | 12 | 10 | Leo | None | None | None | None |
| 1510 | 691444869282295808 | NaN | NaN | 2016-01-25 02:17:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691444869282295808/photo/1,https://twitter.com/dog_rates/status/691444869282295808/photo/1 | 12 | 10 | Bailey | None | None | None | None |
| 1511 | 691416866452082688 | NaN | NaN | 2016-01-25 00:26:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691416866452082688/photo/1 | 13 | 10 | None | None | None | None | None |
| 1512 | 691321916024623104 | NaN | NaN | 2016-01-24 18:09:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691321916024623104/photo/1 | 11 | 10 | Molly | None | None | None | None |
| 1513 | 691096613310316544 | NaN | NaN | 2016-01-24 03:14:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691096613310316544/photo/1 | 11 | 10 | None | None | None | None | None |
| 1514 | 691090071332753408 | NaN | NaN | 2016-01-24 02:48:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691090071332753408/photo/1 | 12 | 10 | None | None | None | None | None |
| 1515 | 690989312272396288 | NaN | NaN | 2016-01-23 20:07:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e | NaN | NaN | NaN | https://vine.co/v/iOZKZEU2nHq | 12 | 10 | None | None | None | None | None |
| 1516 | 690959652130045952 | NaN | NaN | 2016-01-23 18:09:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1,https://twitter.com/dog_rates/status/690959652130045952/photo/1 | 11 | 10 | None | None | None | None | None |
| 1517 | 690938899477221376 | NaN | NaN | 2016-01-23 16:47:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690938899477221376/photo/1 | 10 | 10 | None | None | None | None | None |
| 1518 | 690932576555528194 | NaN | NaN | 2016-01-23 16:22:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690932576555528194/photo/1 | 12 | 10 | Buddy | None | None | None | None |
| 1519 | 690735892932222976 | NaN | NaN | 2016-01-23 03:20:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690735892932222976/photo/1,https://twitter.com/dog_rates/status/690735892932222976/photo/1 | 13 | 10 | Peaches | None | None | None | None |
| 1520 | 690728923253055490 | NaN | NaN | 2016-01-23 02:53:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690728923253055490/photo/1 | 8 | 10 | Vinscent | None | None | None | None |
| 1521 | 690690673629138944 | NaN | NaN | 2016-01-23 00:21:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690690673629138944/photo/1 | 10 | 10 | Cedrick | None | None | None | None |
| 1522 | 690649993829576704 | NaN | NaN | 2016-01-22 21:39:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690649993829576704/photo/1 | 11 | 10 | Hazel | None | None | None | None |
| 1523 | 690607260360429569 | 6.903413e+17 | 4.670367e+08 | 2016-01-22 18:49:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 @LightningHoltt | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 1524 | 690597161306841088 | NaN | NaN | 2016-01-22 18:09:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690597161306841088/photo/1 | 11 | 10 | Lolo | None | None | None | None |
| 1525 | 690400367696297985 | NaN | NaN | 2016-01-22 05:07:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690400367696297985/photo/1 | 10 | 10 | Eriq | None | None | None | None |
| 1526 | 690374419777196032 | NaN | NaN | 2016-01-22 03:24:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690374419777196032/photo/1 | 11 | 10 | Phred | None | None | None | None |
| 1527 | 690360449368465409 | NaN | NaN | 2016-01-22 02:28:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690360449368465409/photo/1 | 9 | 10 | the | None | None | None | None |
| 1528 | 690348396616552449 | NaN | NaN | 2016-01-22 01:40:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL | NaN | NaN | NaN | https://vine.co/v/iejBWerY9X2 | 12 | 10 | Oddie | None | None | None | None |
| 1529 | 690248561355657216 | NaN | NaN | 2016-01-21 19:04:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690248561355657216/photo/1 | 11 | 10 | Maxwell | None | None | None | None |
| 1530 | 690021994562220032 | NaN | NaN | 2016-01-21 04:03:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690021994562220032/photo/1 | 10 | 10 | Geoff | None | None | None | None |
| 1531 | 690015576308211712 | NaN | NaN | 2016-01-21 03:38:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690015576308211712/photo/1,https://twitter.com/dog_rates/status/690015576308211712/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1532 | 690005060500217858 | NaN | NaN | 2016-01-21 02:56:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690005060500217858/photo/1 | 10 | 10 | None | None | None | None | None |
| 1533 | 689999384604450816 | NaN | NaN | 2016-01-21 02:34:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689999384604450816/photo/1 | 10 | 10 | Covach | None | None | None | None |
| 1534 | 689993469801164801 | NaN | NaN | 2016-01-21 02:10:37 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm | NaN | NaN | NaN | https://vine.co/v/ienexVMZgi5 | 12 | 10 | None | None | floofer | None | None |
| 1535 | 689977555533848577 | NaN | NaN | 2016-01-21 01:07:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689977555533848577/photo/1 | 12 | 10 | None | None | None | None | None |
| 1536 | 689905486972461056 | NaN | NaN | 2016-01-20 20:21:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1,https://twitter.com/dog_rates/status/689905486972461056/photo/1 | 11 | 10 | Gizmo | None | None | pupper | None |
| 1537 | 689877686181715968 | NaN | NaN | 2016-01-20 18:30:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689877686181715968/photo/1 | 9 | 10 | Durg | None | None | None | None |
| 1538 | 689835978131935233 | NaN | NaN | 2016-01-20 15:44:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689835978131935233/photo/1 | 11 | 10 | Fynn | None | None | None | None |
| 1539 | 689661964914655233 | NaN | NaN | 2016-01-20 04:13:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689661964914655233/photo/1 | 12 | 10 | Luca | None | None | None | None |
| 1540 | 689659372465688576 | NaN | NaN | 2016-01-20 04:03:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689659372465688576/photo/1 | 8 | 10 | Ricky | None | None | None | None |
| 1541 | 689623661272240129 | NaN | NaN | 2016-01-20 01:41:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689623661272240129/photo/1,https://twitter.com/dog_rates/status/689623661272240129/photo/1 | 10 | 10 | Lucy | None | None | pupper | None |
| 1542 | 689599056876867584 | NaN | NaN | 2016-01-20 00:03:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689599056876867584/photo/1 | 11 | 10 | None | None | None | None | None |
| 1543 | 689557536375177216 | NaN | NaN | 2016-01-19 21:18:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Downright majestic af 12/10 https://t.co/WFh2FEbYzj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689557536375177216/photo/1 | 12 | 10 | None | None | None | None | None |
| 1544 | 689517482558820352 | NaN | NaN | 2016-01-19 18:39:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1,https://twitter.com/dog_rates/status/689517482558820352/photo/1 | 12 | 10 | Carl | None | None | None | None |
| 1545 | 689289219123089408 | NaN | NaN | 2016-01-19 03:32:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689289219123089408/video/1 | 13 | 10 | None | None | None | None | None |
| 1546 | 689283819090870273 | NaN | NaN | 2016-01-19 03:10:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689283819090870273/photo/1 | 9 | 10 | Chipson | None | None | None | None |
| 1547 | 689280876073582592 | NaN | NaN | 2016-01-19 02:59:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1,https://twitter.com/dog_rates/status/689280876073582592/photo/1 | 10 | 10 | Herald | None | None | None | None |
| 1548 | 689275259254616065 | NaN | NaN | 2016-01-19 02:36:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689275259254616065/photo/1 | 10 | 10 | Lucky | None | None | None | None |
| 1549 | 689255633275777024 | NaN | NaN | 2016-01-19 01:18:43 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 | NaN | NaN | NaN | https://vine.co/v/iOL792n5hz2 | 10 | 10 | Ferg | None | None | None | None |
| 1550 | 689154315265683456 | NaN | NaN | 2016-01-18 18:36:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689154315265683456/photo/1 | 9 | 10 | None | None | None | None | None |
| 1551 | 689143371370250240 | NaN | NaN | 2016-01-18 17:52:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689143371370250240/photo/1 | 10 | 10 | Trip | None | None | pupper | None |
| 1552 | 688916208532455424 | NaN | NaN | 2016-01-18 02:49:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688916208532455424/photo/1,https://twitter.com/dog_rates/status/688916208532455424/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1553 | 688908934925697024 | NaN | NaN | 2016-01-18 02:21:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688908934925697024/photo/1 | 8 | 10 | Clarence | None | None | None | None |
| 1554 | 688898160958271489 | NaN | NaN | 2016-01-18 01:38:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688898160958271489/photo/1,https://twitter.com/dog_rates/status/688898160958271489/photo/1 | 10 | 10 | None | None | None | None | None |
| 1555 | 688894073864884227 | NaN | NaN | 2016-01-18 01:22:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688894073864884227/photo/1 | 7 | 10 | Hamrick | None | None | pupper | None |
| 1556 | 688828561667567616 | NaN | NaN | 2016-01-17 21:01:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688828561667567616/photo/1 | 9 | 10 | Brad | None | None | None | None |
| 1557 | 688804835492233216 | NaN | NaN | 2016-01-17 19:27:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1,https://twitter.com/dog_rates/status/688804835492233216/photo/1 | 12 | 10 | None | None | None | None | None |
| 1558 | 688789766343622656 | NaN | NaN | 2016-01-17 18:27:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688789766343622656/photo/1 | 8 | 10 | Pubert | None | None | None | None |
| 1559 | 688547210804498433 | NaN | NaN | 2016-01-17 02:23:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688547210804498433/photo/1 | 9 | 10 | Frönq | None | None | None | None |
| 1560 | 688519176466644993 | NaN | NaN | 2016-01-17 00:32:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688519176466644993/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1561 | 688385280030670848 | NaN | NaN | 2016-01-16 15:40:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1,https://twitter.com/dog_rates/status/688385280030670848/photo/1 | 12 | 10 | Louis | None | None | None | None |
| 1562 | 688211956440801280 | NaN | NaN | 2016-01-16 04:11:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688211956440801280/video/1 | 13 | 10 | Derby | None | None | None | None |
| 1563 | 688179443353796608 | NaN | NaN | 2016-01-16 02:02:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688179443353796608/photo/1 | 10 | 10 | Lizzie | None | None | pupper | None |
| 1564 | 688116655151435777 | NaN | NaN | 2016-01-15 21:52:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688116655151435777/photo/1 | 10 | 10 | None | None | None | None | None |
| 1565 | 688064179421470721 | NaN | NaN | 2016-01-15 18:24:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688064179421470721/photo/1 | 11 | 10 | Kilo | None | None | None | None |
| 1566 | 687841446767013888 | NaN | NaN | 2016-01-15 03:39:15 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp | NaN | NaN | NaN | https://vine.co/v/iOWwUPH1hrw | 13 | 10 | None | None | None | None | None |
| 1567 | 687826841265172480 | NaN | NaN | 2016-01-15 02:41:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1,https://twitter.com/dog_rates/status/687826841265172480/photo/1 | 12 | 10 | Louis | None | None | None | None |
| 1568 | 687818504314159109 | NaN | NaN | 2016-01-15 02:08:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687818504314159109/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1569 | 687807801670897665 | NaN | NaN | 2016-01-15 01:25:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687807801670897665/photo/1 | 11 | 10 | Trooper | None | None | None | None |
| 1570 | 687732144991551489 | NaN | NaN | 2016-01-14 20:24:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl | NaN | NaN | NaN | https://vine.co/v/iOuMphL5DBY | 11 | 10 | Ember | None | None | None | None |
| 1571 | 687704180304273409 | NaN | NaN | 2016-01-14 18:33:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687704180304273409/photo/1 | 9 | 10 | Blakely | None | None | pupper | None |
| 1572 | 687664829264453632 | NaN | NaN | 2016-01-14 15:57:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687664829264453632/photo/1 | 11 | 10 | Opal | None | None | None | None |
| 1573 | 687494652870668288 | NaN | NaN | 2016-01-14 04:41:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687494652870668288/photo/1 | 7 | 10 | Marq | None | None | None | None |
| 1574 | 687480748861947905 | NaN | NaN | 2016-01-14 03:45:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Another magnificent photo. 12/10 https://t.co/X5w387K5jr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687480748861947905/photo/1 | 12 | 10 | None | None | None | None | None |
| 1575 | 687476254459715584 | NaN | NaN | 2016-01-14 03:28:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687476254459715584/photo/1 | 11 | 10 | Curtis | None | None | pupper | None |
| 1576 | 687460506001633280 | NaN | NaN | 2016-01-14 02:25:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687460506001633280/photo/1 | 10 | 10 | Kramer | None | None | None | None |
| 1577 | 687399393394311168 | NaN | NaN | 2016-01-13 22:22:41 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO | NaN | NaN | NaN | https://vine.co/v/iM2hLu9LU5i | 10 | 10 | Barry | None | None | None | None |
| 1578 | 687317306314240000 | NaN | NaN | 2016-01-13 16:56:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687317306314240000/photo/1,https://twitter.com/dog_rates/status/687317306314240000/photo/1 | 11 | 10 | Tyrone | None | None | None | None |
| 1579 | 687312378585812992 | NaN | NaN | 2016-01-13 16:36:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687312378585812992/photo/1 | 7 | 10 | None | None | None | pupper | None |
| 1580 | 687127927494963200 | NaN | NaN | 2016-01-13 04:23:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687127927494963200/photo/1 | 9 | 10 | Gordon | None | None | None | None |
| 1581 | 687124485711986689 | NaN | NaN | 2016-01-13 04:10:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687124485711986689/photo/1 | 11 | 10 | Samson | None | None | None | None |
| 1582 | 687109925361856513 | NaN | NaN | 2016-01-13 03:12:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1,https://twitter.com/dog_rates/status/687109925361856513/photo/1 | 11 | 10 | Baxter | None | None | None | None |
| 1583 | 687102708889812993 | NaN | NaN | 2016-01-13 02:43:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687102708889812993/photo/1 | 5 | 10 | None | None | None | None | None |
| 1584 | 687096057537363968 | NaN | NaN | 2016-01-13 02:17:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687096057537363968/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1585 | 686947101016735744 | NaN | NaN | 2016-01-12 16:25:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686947101016735744/photo/1 | 11 | 10 | Jackson | None | None | None | None |
| 1586 | 686760001961103360 | NaN | NaN | 2016-01-12 04:01:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 | NaN | NaN | NaN | https://vine.co/v/iMvubwT260D | 12 | 10 | None | None | None | pupper | None |
| 1587 | 686749460672679938 | NaN | NaN | 2016-01-12 03:20:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686749460672679938/photo/1 | 8 | 10 | None | None | None | None | None |
| 1588 | 686730991906516992 | NaN | NaN | 2016-01-12 02:06:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686730991906516992/photo/1 | 12 | 10 | None | None | None | None | None |
| 1589 | 686683045143953408 | NaN | NaN | 2016-01-11 22:56:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686683045143953408/photo/1 | 11 | 10 | Mona | None | None | pupper | None |
| 1590 | 686618349602762752 | NaN | NaN | 2016-01-11 18:39:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686618349602762752/photo/1 | 11 | 10 | Olivia | None | None | pupper | None |
| 1591 | 686606069955735556 | NaN | NaN | 2016-01-11 17:50:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686606069955735556/photo/1 | 10 | 10 | Horace | None | None | None | None |
| 1592 | 686394059078897668 | NaN | NaN | 2016-01-11 03:47:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB | NaN | NaN | NaN | https://vine.co/v/iMqBebnOvav | 12 | 10 | None | None | None | None | None |
| 1593 | 686386521809772549 | NaN | NaN | 2016-01-11 03:17:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686386521809772549/photo/1 | 11 | 10 | Crimson | None | None | None | None |
| 1594 | 686377065986265092 | NaN | NaN | 2016-01-11 02:40:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686377065986265092/photo/1 | 10 | 10 | Birf | None | None | pupper | None |
| 1595 | 686358356425093120 | NaN | NaN | 2016-01-11 01:25:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686358356425093120/photo/1 | 10 | 10 | None | None | None | None | None |
| 1596 | 686286779679375361 | NaN | NaN | 2016-01-10 20:41:33 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe | NaN | NaN | NaN | https://vine.co/v/iMZx6aDbExn | 12 | 10 | None | None | None | None | None |
| 1597 | 686050296934563840 | NaN | NaN | 2016-01-10 05:01:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686050296934563840/photo/1 | 11 | 10 | Flávio | None | None | None | None |
| 1598 | 686035780142297088 | 6.860340e+17 | 4.196984e+09 | 2016-01-10 04:04:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating | NaN | NaN | NaN | NaN | 4 | 20 | None | None | None | None | None |
| 1599 | 686034024800862208 | NaN | NaN | 2016-01-10 03:57:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686034024800862208/photo/1 | 12 | 10 | None | None | None | None | None |
| 1600 | 686007916130873345 | NaN | NaN | 2016-01-10 02:13:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686007916130873345/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1601 | 686003207160610816 | NaN | NaN | 2016-01-10 01:54:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686003207160610816/photo/1 | 3 | 10 | Hammond | None | None | None | None |
| 1602 | 685973236358713344 | NaN | NaN | 2016-01-09 23:55:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685973236358713344/photo/1 | 11 | 10 | Lorelei | None | None | None | None |
| 1603 | 685943807276412928 | NaN | NaN | 2016-01-09 21:58:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685943807276412928/video/1 | 8 | 10 | the | None | None | pupper | None |
| 1604 | 685906723014619143 | NaN | NaN | 2016-01-09 19:31:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685906723014619143/photo/1,https://twitter.com/dog_rates/status/685906723014619143/photo/1 | 9 | 10 | Olive | None | None | None | None |
| 1605 | 685681090388975616 | 6.855479e+17 | 4.196984e+09 | 2016-01-09 04:34:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 1606 | 685667379192414208 | NaN | NaN | 2016-01-09 03:40:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685667379192414208/photo/1 | 9 | 10 | Marty | None | None | pupper | None |
| 1607 | 685663452032069632 | NaN | NaN | 2016-01-09 03:24:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685663452032069632/video/1 | 12 | 10 | Brooks | None | None | None | None |
| 1608 | 685641971164143616 | NaN | NaN | 2016-01-09 01:59:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685641971164143616/photo/1 | 7 | 10 | Otis | None | None | pupper | None |
| 1609 | 685547936038666240 | NaN | NaN | 2016-01-08 19:45:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685547936038666240/photo/1,https://twitter.com/dog_rates/status/685547936038666240/photo/1 | 14 | 10 | None | None | None | pupper | None |
| 1610 | 685532292383666176 | NaN | NaN | 2016-01-08 18:43:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685532292383666176/photo/1 | 9 | 10 | None | None | None | None | None |
| 1611 | 685325112850124800 | NaN | NaN | 2016-01-08 05:00:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685325112850124800/photo/1 | 10 | 10 | None | None | None | None | None |
| 1612 | 685321586178670592 | NaN | NaN | 2016-01-08 04:46:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685321586178670592/photo/1 | 10 | 10 | Rocky | None | None | None | None |
| 1613 | 685315239903100929 | NaN | NaN | 2016-01-08 04:21:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685315239903100929/photo/1,https://twitter.com/dog_rates/status/685315239903100929/photo/1 | 11 | 10 | None | None | None | None | None |
| 1614 | 685307451701334016 | NaN | NaN | 2016-01-08 03:50:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685307451701334016/photo/1 | 11 | 10 | Petrick | None | floofer | None | None |
| 1615 | 685268753634967552 | NaN | NaN | 2016-01-08 01:16:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685268753634967552/photo/1 | 10 | 10 | Hubertson | None | None | pupper | None |
| 1616 | 685198997565345792 | NaN | NaN | 2016-01-07 20:39:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685198997565345792/photo/1 | 11 | 10 | Alfie | None | None | None | None |
| 1617 | 685169283572338688 | NaN | NaN | 2016-01-07 18:41:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685169283572338688/photo/1 | 11 | 10 | Gerbald | None | None | pupper | None |
| 1618 | 684969860808454144 | 6.849598e+17 | 4.196984e+09 | 2016-01-07 05:28:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u | NaN | NaN | NaN | NaN | 5 | 10 | None | None | None | None | None |
| 1619 | 684959798585110529 | NaN | NaN | 2016-01-07 04:48:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684959798585110529/photo/1 | 5 | 10 | Jerry | None | None | None | None |
| 1620 | 684940049151070208 | NaN | NaN | 2016-01-07 03:30:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684940049151070208/photo/1,https://twitter.com/dog_rates/status/684940049151070208/photo/1 | 12 | 10 | Oreo | None | None | None | None |
| 1621 | 684926975086034944 | NaN | NaN | 2016-01-07 02:38:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684926975086034944/photo/1 | 11 | 10 | Bruiser | None | None | None | None |
| 1622 | 684914660081053696 | NaN | NaN | 2016-01-07 01:49:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684914660081053696/photo/1 | 12 | 10 | None | None | None | None | None |
| 1623 | 684902183876321280 | NaN | NaN | 2016-01-07 00:59:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684902183876321280/photo/1 | 11 | 10 | Perry | None | None | None | None |
| 1624 | 684880619965411328 | NaN | NaN | 2016-01-06 23:33:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684880619965411328/photo/1 | 5 | 10 | None | None | None | pupper | None |
| 1625 | 684830982659280897 | NaN | NaN | 2016-01-06 20:16:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p | NaN | NaN | NaN | https://vine.co/v/eEZXZI1rqxX | 13 | 10 | None | None | None | pupper | None |
| 1626 | 684800227459624960 | NaN | NaN | 2016-01-06 18:14:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684800227459624960/photo/1 | 11 | 10 | Theodore | None | None | None | None |
| 1627 | 684594889858887680 | NaN | NaN | 2016-01-06 04:38:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684594889858887680/photo/1 | 10 | 10 | None | None | None | None | None |
| 1628 | 684588130326986752 | NaN | NaN | 2016-01-06 04:11:43 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL | NaN | NaN | NaN | https://vine.co/v/ihWIxntjtO7 | 12 | 10 | None | None | None | pupper | None |
| 1629 | 684567543613382656 | NaN | NaN | 2016-01-06 02:49:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684567543613382656/photo/1 | 4 | 10 | Bobby | None | None | None | None |
| 1630 | 684538444857667585 | 6.844811e+17 | 4.196984e+09 | 2016-01-06 00:54:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684538444857667585/video/1 | 12 | 10 | None | None | None | None | None |
| 1631 | 684481074559381504 | NaN | NaN | 2016-01-05 21:06:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684481074559381504/photo/1 | 10 | 10 | Pippa | None | None | None | None |
| 1632 | 684460069371654144 | NaN | NaN | 2016-01-05 19:42:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684460069371654144/photo/1 | 10 | 10 | Jeph | None | None | None | None |
| 1633 | 684241637099323392 | NaN | NaN | 2016-01-05 05:14:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1,https://twitter.com/dog_rates/status/684241637099323392/photo/1 | 12 | 10 | Obi | None | None | None | None |
| 1634 | 684225744407494656 | 6.842229e+17 | 4.196984e+09 | 2016-01-05 04:11:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1 | 143 | 130 | None | None | None | None | None |
| 1635 | 684222868335505415 | NaN | NaN | 2016-01-05 04:00:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684222868335505415/photo/1 | 121 | 110 | None | None | None | None | None |
| 1636 | 684200372118904832 | NaN | NaN | 2016-01-05 02:30:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684200372118904832/photo/1 | 6 | 10 | None | None | None | None | None |
| 1637 | 684195085588783105 | NaN | NaN | 2016-01-05 02:09:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684195085588783105/photo/1 | 9 | 10 | Tino | None | None | None | None |
| 1638 | 684188786104872960 | NaN | NaN | 2016-01-05 01:44:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684188786104872960/photo/1 | 10 | 10 | None | None | None | None | None |
| 1639 | 684177701129875456 | NaN | NaN | 2016-01-05 01:00:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684177701129875456/photo/1 | 10 | 10 | Kulet | None | None | None | None |
| 1640 | 684147889187209216 | NaN | NaN | 2016-01-04 23:02:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 | NaN | NaN | NaN | https://vine.co/v/ib2nTOEuuOI | 12 | 10 | Sweets | None | None | pupper | None |
| 1641 | 684122891630342144 | NaN | NaN | 2016-01-04 21:23:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684122891630342144/photo/1 | 11 | 10 | None | None | None | None | None |
| 1642 | 684097758874210310 | NaN | NaN | 2016-01-04 19:43:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684097758874210310/photo/1 | 10 | 10 | Lupe | None | None | None | None |
| 1643 | 683857920510050305 | NaN | NaN | 2016-01-04 03:50:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683857920510050305/photo/1 | 10 | 10 | Sadie | None | None | None | None |
| 1644 | 683852578183077888 | NaN | NaN | 2016-01-04 03:28:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683852578183077888/photo/1 | 10 | 10 | Tiger | None | None | None | None |
| 1645 | 683849932751646720 | NaN | NaN | 2016-01-04 03:18:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683849932751646720/photo/1 | 5 | 10 | Jiminy | None | None | None | None |
| 1646 | 683834909291606017 | NaN | NaN | 2016-01-04 02:18:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683834909291606017/video/1 | 9 | 10 | None | None | None | pupper | None |
| 1647 | 683828599284170753 | NaN | NaN | 2016-01-04 01:53:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683828599284170753/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1648 | 683773439333797890 | NaN | NaN | 2016-01-03 22:14:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683773439333797890/photo/1 | 9 | 10 | Buddy | None | None | None | None |
| 1649 | 683742671509258241 | NaN | NaN | 2016-01-03 20:12:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683742671509258241/photo/1 | 11 | 10 | Sebastian | None | None | None | None |
| 1650 | 683515932363329536 | NaN | NaN | 2016-01-03 05:11:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z | NaN | NaN | NaN | https://vine.co/v/ibvnzrauFuV | 11 | 10 | None | None | None | None | None |
| 1651 | 683498322573824003 | NaN | NaN | 2016-01-03 04:01:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683498322573824003/photo/1 | 11 | 10 | Griffin | None | None | None | None |
| 1652 | 683481228088049664 | NaN | NaN | 2016-01-03 02:53:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683481228088049664/photo/1 | 11 | 10 | Banjo | None | None | pupper | None |
| 1653 | 683462770029932544 | NaN | NaN | 2016-01-03 01:39:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683462770029932544/photo/1 | 8 | 10 | None | None | None | pupper | None |
| 1654 | 683449695444799489 | NaN | NaN | 2016-01-03 00:47:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683449695444799489/photo/1 | 10 | 10 | None | None | None | None | None |
| 1655 | 683391852557561860 | NaN | NaN | 2016-01-02 20:58:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683391852557561860/photo/1 | 11 | 10 | Jack | None | None | None | None |
| 1656 | 683357973142474752 | NaN | NaN | 2016-01-02 18:43:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683357973142474752/photo/1 | 10 | 10 | None | None | None | None | None |
| 1657 | 683142553609318400 | NaN | NaN | 2016-01-02 04:27:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683142553609318400/photo/1 | 9 | 10 | Brandy | None | None | pupper | None |
| 1658 | 683111407806746624 | NaN | NaN | 2016-01-02 02:23:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683111407806746624/photo/1 | 10 | 10 | Larry | None | None | pupper | None |
| 1659 | 683098815881154561 | NaN | NaN | 2016-01-02 01:33:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683098815881154561/photo/1 | 12 | 10 | None | None | None | None | None |
| 1660 | 683078886620553216 | NaN | NaN | 2016-01-02 00:14:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683078886620553216/photo/1 | 9 | 10 | None | None | None | pupper | None |
| 1661 | 683030066213818368 | NaN | NaN | 2016-01-01 21:00:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683030066213818368/photo/1 | 10 | 10 | Lulu | None | None | None | None |
| 1662 | 682962037429899265 | NaN | NaN | 2016-01-01 16:30:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682962037429899265/photo/1 | 7 | 11 | Darrel | None | None | None | None |
| 1663 | 682808988178739200 | 6.827884e+17 | 4.196984e+09 | 2016-01-01 06:22:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible | NaN | NaN | NaN | NaN | 20 | 16 | None | None | None | None | None |
| 1664 | 682788441537560576 | NaN | NaN | 2016-01-01 05:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682788441537560576/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1665 | 682750546109968385 | NaN | NaN | 2016-01-01 02:29:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682750546109968385/photo/1 | 9 | 10 | Taco | None | None | None | None |
| 1666 | 682697186228989953 | NaN | NaN | 2015-12-31 22:57:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682697186228989953/photo/1 | 12 | 10 | None | None | None | None | None |
| 1667 | 682662431982772225 | NaN | NaN | 2015-12-31 20:39:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682662431982772225/photo/1 | 11 | 10 | Joey | None | None | None | None |
| 1668 | 682638830361513985 | NaN | NaN | 2015-12-31 19:05:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1,https://twitter.com/dog_rates/status/682638830361513985/photo/1 | 12 | 10 | None | None | None | None | None |
| 1669 | 682429480204398592 | NaN | NaN | 2015-12-31 05:14:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682429480204398592/photo/1 | 8 | 10 | None | None | None | None | None |
| 1670 | 682406705142087680 | NaN | NaN | 2015-12-31 03:43:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682406705142087680/photo/1 | 7 | 10 | Patrick | None | None | pupper | None |
| 1671 | 682393905736888321 | NaN | NaN | 2015-12-31 02:52:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682393905736888321/photo/1 | 11 | 10 | Kreg | None | None | None | None |
| 1672 | 682389078323662849 | NaN | NaN | 2015-12-31 02:33:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682389078323662849/photo/1 | 9 | 10 | Brody | None | None | None | None |
| 1673 | 682303737705140231 | NaN | NaN | 2015-12-30 20:54:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682303737705140231/photo/1 | 9 | 10 | Todo | None | None | None | None |
| 1674 | 682259524040966145 | NaN | NaN | 2015-12-30 17:58:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682259524040966145/photo/1 | 9 | 10 | Jax | None | None | None | None |
| 1675 | 682242692827447297 | NaN | NaN | 2015-12-30 16:51:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682242692827447297/photo/1 | 11 | 10 | Samson | None | None | None | None |
| 1676 | 682088079302213632 | NaN | NaN | 2015-12-30 06:37:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE | NaN | NaN | NaN | https://vine.co/v/iqMjlxULzbn | 12 | 10 | None | None | None | None | None |
| 1677 | 682059653698686977 | NaN | NaN | 2015-12-30 04:44:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682059653698686977/photo/1,https://twitter.com/dog_rates/status/682059653698686977/photo/1 | 11 | 10 | Tess | None | None | None | None |
| 1678 | 682047327939461121 | NaN | NaN | 2015-12-30 03:55:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682047327939461121/photo/1 | 10 | 10 | None | None | None | None | None |
| 1679 | 682032003584274432 | NaN | NaN | 2015-12-30 02:54:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682032003584274432/photo/1 | 11 | 10 | Ulysses | None | None | None | None |
| 1680 | 682003177596559360 | NaN | NaN | 2015-12-30 01:00:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682003177596559360/photo/1 | 5 | 10 | None | None | None | None | None |
| 1681 | 681981167097122816 | NaN | NaN | 2015-12-29 23:32:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681981167097122816/photo/1 | 12 | 10 | Jimothy | None | None | None | None |
| 1682 | 681891461017812993 | NaN | NaN | 2015-12-29 17:36:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681891461017812993/photo/1 | 10 | 10 | Charlie | None | None | pupper | None |
| 1683 | 681694085539872773 | NaN | NaN | 2015-12-29 04:31:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681694085539872773/photo/1 | 11 | 10 | Bo | None | None | pupper | None |
| 1684 | 681679526984871937 | NaN | NaN | 2015-12-29 03:33:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681679526984871937/photo/1 | 7 | 10 | None | None | None | pupper | None |
| 1685 | 681654059175129088 | NaN | NaN | 2015-12-29 01:52:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681654059175129088/photo/1 | 12 | 10 | Toffee | None | None | pupper | None |
| 1686 | 681610798867845120 | NaN | NaN | 2015-12-28 23:00:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *collapses* 12/10 https://t.co/C7M8mnzHIK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681610798867845120/photo/1 | 12 | 10 | None | None | None | None | None |
| 1687 | 681579835668455424 | NaN | NaN | 2015-12-28 20:57:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681579835668455424/photo/1 | 8 | 10 | Apollo | None | None | None | None |
| 1688 | 681523177663676416 | NaN | NaN | 2015-12-28 17:12:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681523177663676416/photo/1 | 12 | 10 | Carly | None | None | None | None |
| 1689 | 681340665377193984 | 6.813394e+17 | 4.196984e+09 | 2015-12-28 05:07:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace | NaN | NaN | NaN | NaN | 5 | 10 | None | None | None | None | None |
| 1690 | 681339448655802368 | NaN | NaN | 2015-12-28 05:02:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681339448655802368/photo/1 | 9 | 10 | Asher | None | None | None | None |
| 1691 | 681320187870711809 | NaN | NaN | 2015-12-28 03:46:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681320187870711809/photo/1 | 11 | 10 | Glacier | None | None | None | None |
| 1692 | 681302363064414209 | NaN | NaN | 2015-12-28 02:35:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681302363064414209/photo/1 | 3 | 10 | Chuck | None | None | None | None |
| 1693 | 681297372102656000 | NaN | NaN | 2015-12-28 02:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681297372102656000/photo/1 | 12 | 10 | actually | None | None | None | None |
| 1694 | 681281657291280384 | NaN | NaN | 2015-12-28 01:12:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681281657291280384/photo/1 | 11 | 10 | Sarge | None | None | None | None |
| 1695 | 681261549936340994 | NaN | NaN | 2015-12-27 23:53:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681261549936340994/photo/1 | 9 | 10 | Panda | None | None | None | None |
| 1696 | 681242418453299201 | NaN | NaN | 2015-12-27 22:37:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681242418453299201/photo/1 | 10 | 10 | Champ | None | None | None | None |
| 1697 | 681231109724700672 | NaN | NaN | 2015-12-27 21:52:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681231109724700672/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1698 | 681193455364796417 | NaN | NaN | 2015-12-27 19:22:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681193455364796417/photo/1,https://twitter.com/dog_rates/status/681193455364796417/photo/1 | 11 | 10 | Aspen | None | None | None | None |
| 1699 | 680970795137544192 | NaN | NaN | 2015-12-27 04:37:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680970795137544192/photo/1 | 9 | 10 | None | None | None | None | None |
| 1700 | 680959110691590145 | NaN | NaN | 2015-12-27 03:51:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1,https://twitter.com/dog_rates/status/680959110691590145/photo/1 | 9 | 10 | Ozzie | None | None | None | None |
| 1701 | 680940246314430465 | NaN | NaN | 2015-12-27 02:36:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680940246314430465/photo/1 | 4 | 10 | Alice | None | None | None | None |
| 1702 | 680934982542561280 | NaN | NaN | 2015-12-27 02:15:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680934982542561280/photo/1 | 10 | 10 | Sadie | None | None | None | None |
| 1703 | 680913438424612864 | NaN | NaN | 2015-12-27 00:49:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680913438424612864/photo/1 | 11 | 10 | Griswold | None | None | None | None |
| 1704 | 680889648562991104 | NaN | NaN | 2015-12-26 23:15:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680889648562991104/photo/1 | 9 | 10 | Cheesy | None | None | None | None |
| 1705 | 680836378243002368 | NaN | NaN | 2015-12-26 19:43:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1,https://twitter.com/dog_rates/status/680836378243002368/photo/1 | 12 | 10 | Ellie | None | None | pupper | None |
| 1706 | 680805554198020098 | NaN | NaN | 2015-12-26 17:41:07 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 | NaN | NaN | NaN | https://vine.co/v/iAP0Ugzi2PO | 9 | 10 | None | None | None | None | None |
| 1707 | 680801747103793152 | NaN | NaN | 2015-12-26 17:25:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680801747103793152/photo/1 | 10 | 10 | None | None | None | None | None |
| 1708 | 680798457301471234 | NaN | NaN | 2015-12-26 17:12:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680798457301471234/photo/1 | 6 | 10 | Moofasa | None | None | None | None |
| 1709 | 680609293079592961 | NaN | NaN | 2015-12-26 04:41:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680609293079592961/photo/1 | 9 | 10 | Brody | None | None | None | None |
| 1710 | 680583894916304897 | NaN | NaN | 2015-12-26 03:00:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1,https://twitter.com/dog_rates/status/680583894916304897/photo/1 | 8 | 10 | Penny | None | None | None | None |
| 1711 | 680497766108381184 | NaN | NaN | 2015-12-25 21:18:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680497766108381184/photo/1 | 12 | 10 | Percy | None | None | None | None |
| 1712 | 680494726643068929 | NaN | NaN | 2015-12-25 21:06:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680494726643068929/photo/1 | 26 | 10 | None | None | None | None | None |
| 1713 | 680473011644985345 | NaN | NaN | 2015-12-25 19:39:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680473011644985345/photo/1 | 10 | 10 | Hector | None | None | pupper | None |
| 1714 | 680440374763077632 | NaN | NaN | 2015-12-25 17:30:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680440374763077632/video/1 | 11 | 10 | None | None | None | None | None |
| 1715 | 680221482581123072 | NaN | NaN | 2015-12-25 03:00:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680221482581123072/photo/1 | 10 | 10 | CeCe | None | None | None | None |
| 1716 | 680206703334408192 | NaN | NaN | 2015-12-25 02:01:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680206703334408192/photo/1 | 12 | 10 | Toby | None | None | None | None |
| 1717 | 680191257256136705 | NaN | NaN | 2015-12-25 01:00:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680191257256136705/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1718 | 680176173301628928 | NaN | NaN | 2015-12-25 00:00:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680176173301628928/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1719 | 680161097740095489 | NaN | NaN | 2015-12-24 23:00:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680161097740095489/photo/1 | 12 | 10 | Goliath | None | None | None | None |
| 1720 | 680145970311643136 | NaN | NaN | 2015-12-24 22:00:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1,https://twitter.com/dog_rates/status/680145970311643136/photo/1 | 10 | 10 | Kawhi | None | None | pupper | None |
| 1721 | 680130881361686529 | NaN | NaN | 2015-12-24 21:00:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680130881361686529/photo/1 | 10 | 10 | Reggie | None | None | None | None |
| 1722 | 680115823365742593 | NaN | NaN | 2015-12-24 20:00:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680115823365742593/photo/1 | 9 | 10 | Ozzy | None | None | None | None |
| 1723 | 680100725817409536 | NaN | NaN | 2015-12-24 19:00:23 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680100725817409536/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1724 | 680085611152338944 | NaN | NaN | 2015-12-24 18:00:19 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1,https://twitter.com/dog_rates/status/680085611152338944/photo/1 | 12 | 10 | by | None | None | None | None |
| 1725 | 680070545539371008 | NaN | NaN | 2015-12-24 17:00:27 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680070545539371008/photo/1 | 9 | 10 | Emmie | None | None | None | None |
| 1726 | 680055455951884288 | NaN | NaN | 2015-12-24 16:00:30 +0000 | <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> | Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680055455951884288/photo/1 | 10 | 10 | Sammy | None | None | None | None |
| 1727 | 679877062409191424 | NaN | NaN | 2015-12-24 04:11:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679877062409191424/photo/1 | 5 | 10 | Penelope | None | None | None | None |
| 1728 | 679872969355714560 | NaN | NaN | 2015-12-24 03:55:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l | NaN | NaN | NaN | https://vine.co/v/iAAxTbj1UAM | 10 | 10 | Rocco | None | None | None | None |
| 1729 | 679862121895714818 | NaN | NaN | 2015-12-24 03:12:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679862121895714818/photo/1 | 11 | 10 | None | None | None | None | None |
| 1730 | 679854723806179328 | NaN | NaN | 2015-12-24 02:42:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679854723806179328/photo/1 | 7 | 10 | Bruce | None | None | None | None |
| 1731 | 679844490799091713 | NaN | NaN | 2015-12-24 02:02:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679844490799091713/photo/1 | 10 | 10 | Willie | None | None | None | None |
| 1732 | 679828447187857408 | NaN | NaN | 2015-12-24 00:58:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1,https://twitter.com/dog_rates/status/679828447187857408/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1733 | 679777920601223168 | NaN | NaN | 2015-12-23 21:37:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679777920601223168/photo/1 | 10 | 10 | Rinna | None | None | pupper | None |
| 1734 | 679736210798047232 | NaN | NaN | 2015-12-23 18:51:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679736210798047232/photo/1 | 9 | 10 | None | None | None | None | None |
| 1735 | 679729593985699840 | NaN | NaN | 2015-12-23 18:25:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679729593985699840/photo/1 | 8 | 10 | Hunter | None | None | None | None |
| 1736 | 679722016581222400 | NaN | NaN | 2015-12-23 17:55:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679722016581222400/photo/1 | 8 | 10 | Mike | None | None | None | None |
| 1737 | 679530280114372609 | NaN | NaN | 2015-12-23 05:13:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679530280114372609/photo/1 | 7 | 10 | a | None | None | None | None |
| 1738 | 679527802031484928 | NaN | NaN | 2015-12-23 05:03:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679527802031484928/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1739 | 679511351870550016 | NaN | NaN | 2015-12-23 03:58:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679511351870550016/photo/1 | 7 | 10 | William | None | None | None | None |
| 1740 | 679503373272485890 | NaN | NaN | 2015-12-23 03:26:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679503373272485890/photo/1 | 8 | 10 | Dwight | None | None | pupper | None |
| 1741 | 679475951516934144 | NaN | NaN | 2015-12-23 01:37:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679475951516934144/photo/1 | 9 | 10 | Evy | None | None | None | None |
| 1742 | 679462823135686656 | NaN | NaN | 2015-12-23 00:45:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679462823135686656/photo/1 | 11 | 10 | Hurley | None | None | None | None |
| 1743 | 679405845277462528 | NaN | NaN | 2015-12-22 20:59:10 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO | NaN | NaN | NaN | https://vine.co/v/iKVFEigMLxP | 10 | 10 | None | None | None | None | None |
| 1744 | 679158373988876288 | NaN | NaN | 2015-12-22 04:35:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679158373988876288/photo/1 | 11 | 10 | Rubio | None | None | None | None |
| 1745 | 679148763231985668 | NaN | NaN | 2015-12-22 03:57:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679148763231985668/photo/1 | 8 | 10 | None | None | None | None | None |
| 1746 | 679132435750195208 | NaN | NaN | 2015-12-22 02:52:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679132435750195208/photo/1 | 10 | 10 | Louis | None | None | None | None |
| 1747 | 679111216690831360 | NaN | NaN | 2015-12-22 01:28:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679111216690831360/video/1 | 12 | 10 | officially | None | None | None | None |
| 1748 | 679062614270468097 | NaN | NaN | 2015-12-21 22:15:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679062614270468097/photo/1,https://twitter.com/dog_rates/status/679062614270468097/photo/1 | 11 | 10 | Chompsky | None | None | None | None |
| 1749 | 679047485189439488 | NaN | NaN | 2015-12-21 21:15:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679047485189439488/photo/1 | 9 | 10 | None | None | None | None | None |
| 1750 | 679001094530465792 | NaN | NaN | 2015-12-21 18:10:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg | NaN | NaN | NaN | https://vine.co/v/iKIwAzEatd6 | 11 | 10 | Rascal | None | None | None | None |
| 1751 | 678991772295516161 | NaN | NaN | 2015-12-21 17:33:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678991772295516161/photo/1 | 12 | 10 | None | None | None | None | None |
| 1752 | 678969228704284672 | NaN | NaN | 2015-12-21 16:04:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678969228704284672/photo/1 | 11 | 10 | Lola | None | None | None | None |
| 1753 | 678800283649069056 | NaN | NaN | 2015-12-21 04:52:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678800283649069056/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1754 | 678798276842360832 | NaN | NaN | 2015-12-21 04:44:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678798276842360832/photo/1 | 7 | 10 | Linda | None | None | None | None |
| 1755 | 678774928607469569 | NaN | NaN | 2015-12-21 03:12:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678774928607469569/photo/1 | 11 | 10 | Tug | None | None | None | None |
| 1756 | 678767140346941444 | NaN | NaN | 2015-12-21 02:41:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678767140346941444/photo/1 | 8 | 10 | Mia | None | None | None | None |
| 1757 | 678764513869611008 | NaN | NaN | 2015-12-21 02:30:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678764513869611008/photo/1 | 10 | 10 | Wilson | None | None | None | None |
| 1758 | 678755239630127104 | NaN | NaN | 2015-12-21 01:53:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678755239630127104/photo/1 | 10 | 10 | Dash | None | None | None | None |
| 1759 | 678740035362037760 | NaN | NaN | 2015-12-21 00:53:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678740035362037760/photo/1 | 6 | 10 | Tango | None | None | None | None |
| 1760 | 678708137298427904 | NaN | NaN | 2015-12-20 22:46:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw | NaN | NaN | NaN | https://vine.co/v/eQjxxYaQ60K | 10 | 10 | None | None | None | pupper | None |
| 1761 | 678675843183484930 | NaN | NaN | 2015-12-20 20:38:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678675843183484930/photo/1 | 2 | 10 | None | None | None | None | None |
| 1762 | 678643457146150913 | NaN | NaN | 2015-12-20 18:29:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678643457146150913/photo/1 | 10 | 10 | Grizz | None | None | None | None |
| 1763 | 678446151570427904 | NaN | NaN | 2015-12-20 05:25:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678446151570427904/photo/1 | 10 | 10 | None | None | None | None | None |
| 1764 | 678424312106393600 | NaN | NaN | 2015-12-20 03:58:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678424312106393600/photo/1 | 2 | 10 | Crystal | None | None | None | None |
| 1765 | 678410210315247616 | NaN | NaN | 2015-12-20 03:02:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678410210315247616/photo/1 | 10 | 10 | Jerome | None | None | None | None |
| 1766 | 678399652199309312 | NaN | NaN | 2015-12-20 02:20:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678399652199309312/video/1 | 12 | 10 | None | None | None | None | None |
| 1767 | 678396796259975168 | NaN | NaN | 2015-12-20 02:09:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678396796259975168/photo/1,https://twitter.com/dog_rates/status/678396796259975168/photo/1 | 12 | 10 | None | None | None | None | None |
| 1768 | 678389028614488064 | NaN | NaN | 2015-12-20 01:38:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678389028614488064/photo/1 | 11 | 10 | Bella | None | None | pupper | None |
| 1769 | 678380236862578688 | NaN | NaN | 2015-12-20 01:03:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678380236862578688/photo/1 | 10 | 10 | Crumpet | None | None | None | None |
| 1770 | 678341075375947776 | NaN | NaN | 2015-12-19 22:28:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678341075375947776/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1771 | 678334497360859136 | NaN | NaN | 2015-12-19 22:02:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678334497360859136/photo/1 | 10 | 10 | Rosie | None | None | None | None |
| 1772 | 678278586130948096 | NaN | NaN | 2015-12-19 18:19:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678278586130948096/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1773 | 678255464182861824 | NaN | NaN | 2015-12-19 16:47:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678255464182861824/photo/1 | 9 | 10 | Jessifer | None | None | None | None |
| 1774 | 678023323247357953 | 6.780211e+17 | 4.196984e+09 | 2015-12-19 01:25:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1775 | 678021115718029313 | NaN | NaN | 2015-12-19 01:16:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678021115718029313/photo/1 | 12 | 10 | Reese | None | None | None | None |
| 1776 | 677961670166224897 | NaN | NaN | 2015-12-18 21:20:32 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi | NaN | NaN | NaN | https://vine.co/v/iKuMDuYV0aZ | 11 | 10 | Izzy | None | None | None | None |
| 1777 | 677918531514703872 | NaN | NaN | 2015-12-18 18:29:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677918531514703872/photo/1 | 10 | 10 | None | None | None | None | None |
| 1778 | 677895101218201600 | NaN | NaN | 2015-12-18 16:56:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677895101218201600/photo/1 | 9 | 10 | None | None | None | None | None |
| 1779 | 677716515794329600 | NaN | NaN | 2015-12-18 05:06:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677716515794329600/photo/1 | 144 | 120 | None | None | None | None | None |
| 1780 | 677700003327029250 | NaN | NaN | 2015-12-18 04:00:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677700003327029250/photo/1 | 10 | 10 | Ralph | None | None | None | None |
| 1781 | 677698403548192770 | NaN | NaN | 2015-12-18 03:54:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677698403548192770/photo/1 | 9 | 10 | Sadie | None | None | None | None |
| 1782 | 677687604918272002 | NaN | NaN | 2015-12-18 03:11:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677687604918272002/photo/1 | 11 | 10 | None | None | None | None | None |
| 1783 | 677673981332312066 | NaN | NaN | 2015-12-18 02:17:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677673981332312066/photo/1 | 9 | 10 | None | None | None | None | None |
| 1784 | 677662372920729601 | NaN | NaN | 2015-12-18 01:31:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677662372920729601/photo/1 | 12 | 10 | None | None | None | None | None |
| 1785 | 677644091929329666 | NaN | NaN | 2015-12-18 00:18:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677644091929329666/video/1 | 11 | 10 | a | None | None | None | None |
| 1786 | 677573743309385728 | NaN | NaN | 2015-12-17 19:39:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677573743309385728/photo/1,https://twitter.com/dog_rates/status/677573743309385728/photo/1 | 10 | 10 | Sandy | None | None | None | None |
| 1787 | 677565715327688705 | NaN | NaN | 2015-12-17 19:07:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677565715327688705/photo/1 | 6 | 10 | None | None | None | None | None |
| 1788 | 677557565589463040 | NaN | NaN | 2015-12-17 18:34:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677557565589463040/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1789 | 677547928504967168 | NaN | NaN | 2015-12-17 17:56:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677547928504967168/photo/1 | 12 | 10 | None | None | None | None | None |
| 1790 | 677530072887205888 | NaN | NaN | 2015-12-17 16:45:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677530072887205888/photo/1 | 9 | 10 | Axel | None | None | None | None |
| 1791 | 677335745548390400 | NaN | NaN | 2015-12-17 03:53:20 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Downright inspiring 12/10 https://t.co/vSLtYBWHcQ | NaN | NaN | NaN | https://vine.co/v/hbLbH77Ar67 | 12 | 10 | None | None | None | None | None |
| 1792 | 677334615166730240 | NaN | NaN | 2015-12-17 03:48:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677334615166730240/photo/1,https://twitter.com/dog_rates/status/677334615166730240/photo/1 | 9 | 10 | None | None | None | None | None |
| 1793 | 677331501395156992 | NaN | NaN | 2015-12-17 03:36:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677331501395156992/photo/1 | 9 | 10 | Humphrey | None | None | None | None |
| 1794 | 677328882937298944 | NaN | NaN | 2015-12-17 03:26:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677328882937298944/photo/1 | 10 | 10 | Derek | None | None | None | None |
| 1795 | 677314812125323265 | NaN | NaN | 2015-12-17 02:30:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677314812125323265/photo/1,https://twitter.com/dog_rates/status/677314812125323265/photo/1 | 10 | 10 | Tassy | None | None | None | None |
| 1796 | 677301033169788928 | NaN | NaN | 2015-12-17 01:35:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677301033169788928/photo/1 | 5 | 10 | Juckson | None | None | None | None |
| 1797 | 677269281705472000 | NaN | NaN | 2015-12-16 23:29:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677269281705472000/photo/1 | 10 | 10 | the | None | None | pupper | None |
| 1798 | 677228873407442944 | NaN | NaN | 2015-12-16 20:48:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677228873407442944/photo/1 | 11 | 10 | Chuq | None | None | None | None |
| 1799 | 677187300187611136 | NaN | NaN | 2015-12-16 18:03:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677187300187611136/photo/1 | 9 | 10 | None | None | None | None | None |
| 1800 | 676975532580409345 | NaN | NaN | 2015-12-16 04:01:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676975532580409345/photo/1 | 11 | 10 | Cooper | None | None | None | None |
| 1801 | 676957860086095872 | NaN | NaN | 2015-12-16 02:51:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676957860086095872/video/1 | 10 | 10 | None | None | None | None | None |
| 1802 | 676949632774234114 | NaN | NaN | 2015-12-16 02:19:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676949632774234114/photo/1 | 8 | 10 | Tyrus | None | None | None | None |
| 1803 | 676948236477857792 | NaN | NaN | 2015-12-16 02:13:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676948236477857792/photo/1 | 6 | 10 | Karl | None | None | None | None |
| 1804 | 676946864479084545 | NaN | NaN | 2015-12-16 02:08:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676946864479084545/photo/1 | 12 | 10 | None | None | None | None | None |
| 1805 | 676942428000112642 | NaN | NaN | 2015-12-16 01:50:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676942428000112642/photo/1 | 9 | 10 | None | None | None | None | None |
| 1806 | 676936541936185344 | NaN | NaN | 2015-12-16 01:27:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676936541936185344/photo/1 | 8 | 10 | None | None | None | pupper | None |
| 1807 | 676916996760600576 | NaN | NaN | 2015-12-16 00:09:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb | NaN | NaN | NaN | https://vine.co/v/imJ0BdZOJTw | 10 | 10 | None | None | None | pupper | None |
| 1808 | 676897532954456065 | NaN | NaN | 2015-12-15 22:52:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676897532954456065/photo/1 | 5 | 10 | None | None | None | None | None |
| 1809 | 676864501615042560 | NaN | NaN | 2015-12-15 20:40:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676864501615042560/photo/1 | 10 | 10 | Ash | None | None | None | None |
| 1810 | 676821958043033607 | NaN | NaN | 2015-12-15 17:51:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676821958043033607/photo/1,https://twitter.com/dog_rates/status/676821958043033607/photo/1 | 11 | 10 | None | None | None | None | None |
| 1811 | 676819651066732545 | NaN | NaN | 2015-12-15 17:42:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676819651066732545/photo/1,https://twitter.com/dog_rates/status/676819651066732545/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1812 | 676811746707918848 | NaN | NaN | 2015-12-15 17:11:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676811746707918848/photo/1 | 9 | 10 | Penny | None | None | None | None |
| 1813 | 676776431406465024 | NaN | NaN | 2015-12-15 14:50:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676776431406465024/video/1 | 10 | 10 | None | None | None | None | None |
| 1814 | 676617503762681856 | NaN | NaN | 2015-12-15 04:19:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676617503762681856/photo/1 | 13 | 10 | None | None | None | pupper | None |
| 1815 | 676613908052996102 | NaN | NaN | 2015-12-15 04:05:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676613908052996102/photo/1 | 12 | 10 | the | None | None | None | None |
| 1816 | 676606785097199616 | NaN | NaN | 2015-12-15 03:36:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676606785097199616/photo/1 | 12 | 10 | None | None | None | None | None |
| 1817 | 676603393314578432 | NaN | NaN | 2015-12-15 03:23:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676603393314578432/photo/1 | 9 | 10 | Godzilla | None | None | pupper | None |
| 1818 | 676593408224403456 | NaN | NaN | 2015-12-15 02:43:33 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF | NaN | NaN | NaN | https://vine.co/v/eEQQaPFbgOY | 11 | 10 | None | None | None | pupper | None |
| 1819 | 676590572941893632 | 6.765883e+17 | 4.196984e+09 | 2015-12-15 02:32:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you | NaN | NaN | NaN | NaN | 7 | 10 | None | None | None | None | None |
| 1820 | 676588346097852417 | NaN | NaN | 2015-12-15 02:23:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676588346097852417/photo/1 | 5 | 10 | Bubbles | None | None | None | None |
| 1821 | 676582956622721024 | NaN | NaN | 2015-12-15 02:02:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676582956622721024/photo/1 | 8 | 10 | Vinnie | None | None | None | None |
| 1822 | 676575501977128964 | NaN | NaN | 2015-12-15 01:32:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676575501977128964/photo/1 | 8 | 10 | None | None | None | pupper | None |
| 1823 | 676533798876651520 | NaN | NaN | 2015-12-14 22:46:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676533798876651520/photo/1 | 12 | 10 | None | None | None | None | None |
| 1824 | 676496375194980353 | NaN | NaN | 2015-12-14 20:17:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676496375194980353/photo/1 | 9 | 10 | Griffin | None | None | None | None |
| 1825 | 676470639084101634 | NaN | NaN | 2015-12-14 18:35:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676470639084101634/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1826 | 676440007570247681 | NaN | NaN | 2015-12-14 16:34:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676440007570247681/photo/1,https://twitter.com/dog_rates/status/676440007570247681/photo/1 | 11 | 10 | None | None | None | None | None |
| 1827 | 676430933382295552 | NaN | NaN | 2015-12-14 15:57:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676430933382295552/photo/1 | 10 | 10 | Duke | None | None | None | None |
| 1828 | 676263575653122048 | NaN | NaN | 2015-12-14 04:52:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676263575653122048/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1829 | 676237365392908289 | NaN | NaN | 2015-12-14 03:08:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676237365392908289/photo/1 | 8 | 10 | Winston | None | None | None | None |
| 1830 | 676219687039057920 | NaN | NaN | 2015-12-14 01:58:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676219687039057920/photo/1 | 10 | 10 | Kenneth | None | None | None | None |
| 1831 | 676215927814406144 | NaN | NaN | 2015-12-14 01:43:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676215927814406144/photo/1 | 9 | 10 | Herm | None | None | None | None |
| 1832 | 676191832485810177 | NaN | NaN | 2015-12-14 00:07:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1,https://twitter.com/dog_rates/status/676191832485810177/photo/1 | 10 | 10 | None | None | None | None | None |
| 1833 | 676146341966438401 | NaN | NaN | 2015-12-13 21:07:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676146341966438401/photo/1 | 10 | 10 | Bert | None | None | None | None |
| 1834 | 676121918416756736 | NaN | NaN | 2015-12-13 19:30:01 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs | NaN | NaN | NaN | https://vine.co/v/iZXg7VpeDAv | 8 | 10 | None | None | None | None | None |
| 1835 | 676101918813499392 | NaN | NaN | 2015-12-13 18:10:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676101918813499392/photo/1 | 11 | 10 | Striker | None | None | None | None |
| 1836 | 676098748976615425 | NaN | NaN | 2015-12-13 17:57:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676098748976615425/photo/1 | 3 | 10 | None | None | None | None | None |
| 1837 | 676089483918516224 | NaN | NaN | 2015-12-13 17:21:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676089483918516224/photo/1 | 9 | 10 | None | None | None | None | None |
| 1838 | 675898130735476737 | NaN | NaN | 2015-12-13 04:40:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675898130735476737/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1839 | 675891555769696257 | NaN | NaN | 2015-12-13 04:14:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675891555769696257/photo/1 | 6 | 10 | Donny | None | None | None | None |
| 1840 | 675888385639251968 | NaN | NaN | 2015-12-13 04:02:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675888385639251968/photo/1 | 10 | 10 | None | None | None | None | None |
| 1841 | 675878199931371520 | NaN | NaN | 2015-12-13 03:21:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675878199931371520/photo/1 | 11 | 10 | None | None | None | None | None |
| 1842 | 675870721063669760 | 6.757073e+17 | 4.196984e+09 | 2015-12-13 02:51:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675870721063669760/photo/1 | 11 | 10 | None | None | None | None | None |
| 1843 | 675853064436391936 | NaN | NaN | 2015-12-13 01:41:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1 | 88 | 80 | None | None | None | None | None |
| 1844 | 675849018447167488 | 6.758457e+17 | 4.196984e+09 | 2015-12-13 01:25:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you | NaN | NaN | NaN | NaN | 9 | 10 | None | None | None | None | None |
| 1845 | 675845657354215424 | NaN | NaN | 2015-12-13 01:12:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675845657354215424/photo/1 | 10 | 10 | Pepper | None | None | pupper | None |
| 1846 | 675822767435051008 | NaN | NaN | 2015-12-12 23:41:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675822767435051008/photo/1 | 10 | 10 | None | None | None | None | None |
| 1847 | 675820929667219457 | NaN | NaN | 2015-12-12 23:34:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675820929667219457/photo/1 | 11 | 10 | None | None | None | None | None |
| 1848 | 675798442703122432 | NaN | NaN | 2015-12-12 22:04:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675798442703122432/photo/1 | 10 | 10 | Bernie | None | None | None | None |
| 1849 | 675781562965868544 | NaN | NaN | 2015-12-12 20:57:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675781562965868544/photo/1 | 11 | 10 | Buddah | None | None | None | None |
| 1850 | 675740360753160193 | NaN | NaN | 2015-12-12 18:13:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675740360753160193/video/1 | 12 | 10 | None | None | None | pupper | None |
| 1851 | 675710890956750848 | NaN | NaN | 2015-12-12 16:16:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675710890956750848/photo/1,https://twitter.com/dog_rates/status/675710890956750848/photo/1 | 12 | 10 | Lenny | None | None | None | None |
| 1852 | 675707330206547968 | 6.754971e+17 | 4.196984e+09 | 2015-12-12 16:02:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675707330206547968/photo/1 | 11 | 10 | None | None | None | None | None |
| 1853 | 675706639471788032 | NaN | NaN | 2015-12-12 15:59:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675706639471788032/photo/1 | 10 | 10 | a | None | None | None | None |
| 1854 | 675534494439489536 | NaN | NaN | 2015-12-12 04:35:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675534494439489536/photo/1 | 11 | 10 | a | None | None | None | None |
| 1855 | 675531475945709568 | NaN | NaN | 2015-12-12 04:23:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675531475945709568/photo/1 | 10 | 10 | Ellie | None | None | None | None |
| 1856 | 675522403582218240 | NaN | NaN | 2015-12-12 03:47:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675522403582218240/photo/1 | 10 | 10 | Sammy | None | None | None | None |
| 1857 | 675517828909424640 | NaN | NaN | 2015-12-12 03:29:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 stay woke https://t.co/XDiQw4Akiw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675517828909424640/photo/1 | 12 | 10 | None | None | None | None | None |
| 1858 | 675501075957489664 | NaN | NaN | 2015-12-12 02:23:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675501075957489664/photo/1 | 13 | 10 | None | None | None | None | None |
| 1859 | 675497103322386432 | NaN | NaN | 2015-12-12 02:07:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675497103322386432/photo/1 | 11 | 10 | Reggie | None | None | None | None |
| 1860 | 675489971617296384 | NaN | NaN | 2015-12-12 01:38:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675489971617296384/photo/1 | 10 | 10 | None | None | None | None | None |
| 1861 | 675483430902214656 | NaN | NaN | 2015-12-12 01:12:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675483430902214656/photo/1 | 5 | 10 | None | None | None | None | None |
| 1862 | 675432746517426176 | NaN | NaN | 2015-12-11 21:51:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1,https://twitter.com/dog_rates/status/675432746517426176/photo/1 | 12 | 10 | None | None | None | None | None |
| 1863 | 675372240448454658 | NaN | NaN | 2015-12-11 17:51:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675372240448454658/photo/1 | 13 | 10 | None | None | None | None | None |
| 1864 | 675362609739206656 | NaN | NaN | 2015-12-11 17:12:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675362609739206656/photo/1 | 12 | 10 | Daisy | None | None | None | None |
| 1865 | 675354435921575936 | NaN | NaN | 2015-12-11 16:40:19 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675354435921575936/video/1 | 13 | 10 | None | None | None | None | None |
| 1866 | 675349384339542016 | 6.749998e+17 | 4.196984e+09 | 2015-12-11 16:20:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1,https://twitter.com/dog_rates/status/675349384339542016/photo/1 | 13 | 10 | None | None | None | None | None |
| 1867 | 675334060156301312 | NaN | NaN | 2015-12-11 15:19:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675334060156301312/photo/1,https://twitter.com/dog_rates/status/675334060156301312/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1868 | 675166823650848770 | NaN | NaN | 2015-12-11 04:14:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675166823650848770/photo/1 | 10 | 10 | Arnold | None | None | None | None |
| 1869 | 675153376133427200 | NaN | NaN | 2015-12-11 03:21:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675153376133427200/photo/1 | 1 | 10 | None | None | None | None | None |
| 1870 | 675149409102012420 | NaN | NaN | 2015-12-11 03:05:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | holy shit 12/10 https://t.co/p6O8X93bTQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675149409102012420/photo/1 | 12 | 10 | None | None | None | None | None |
| 1871 | 675147105808306176 | NaN | NaN | 2015-12-11 02:56:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675147105808306176/photo/1 | 10 | 10 | None | None | None | None | None |
| 1872 | 675146535592706048 | NaN | NaN | 2015-12-11 02:54:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675146535592706048/photo/1 | 7 | 10 | Coops | None | None | None | None |
| 1873 | 675145476954566656 | NaN | NaN | 2015-12-11 02:49:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675145476954566656/photo/1 | 9 | 10 | None | None | None | None | None |
| 1874 | 675135153782571009 | NaN | NaN | 2015-12-11 02:08:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675135153782571009/photo/1 | 5 | 10 | Steven | None | None | None | None |
| 1875 | 675113801096802304 | NaN | NaN | 2015-12-11 00:44:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675113801096802304/photo/1 | 10 | 10 | Zuzu | None | None | pupper | None |
| 1876 | 675111688094527488 | NaN | NaN | 2015-12-11 00:35:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675111688094527488/photo/1 | 8 | 10 | Oliver | None | None | None | None |
| 1877 | 675109292475830276 | NaN | NaN | 2015-12-11 00:26:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675109292475830276/photo/1 | 9 | 10 | a | None | None | None | None |
| 1878 | 675047298674663426 | NaN | NaN | 2015-12-10 20:19:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675047298674663426/photo/1 | 11 | 10 | a | None | None | None | None |
| 1879 | 675015141583413248 | NaN | NaN | 2015-12-10 18:12:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675015141583413248/photo/1 | 10 | 10 | Moe | None | None | None | None |
| 1880 | 675006312288268288 | NaN | NaN | 2015-12-10 17:37:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675006312288268288/photo/1 | 10 | 10 | Mollie | None | None | pupper | None |
| 1881 | 675003128568291329 | NaN | NaN | 2015-12-10 17:24:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675003128568291329/photo/1,https://twitter.com/dog_rates/status/675003128568291329/photo/1 | 12 | 10 | Laela | None | None | None | None |
| 1882 | 674999807681908736 | 6.747934e+17 | 4.196984e+09 | 2015-12-10 17:11:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674999807681908736/photo/1 | 13 | 10 | None | None | None | None | None |
| 1883 | 674805413498527744 | NaN | NaN | 2015-12-10 04:18:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674805413498527744/video/1 | 10 | 10 | None | None | None | None | None |
| 1884 | 674800520222154752 | NaN | NaN | 2015-12-10 03:59:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674800520222154752/photo/1 | 11 | 10 | Tedders | None | None | None | None |
| 1885 | 674793399141146624 | 6.717299e+17 | 4.196984e+09 | 2015-12-10 03:30:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I have found another. 13/10 https://t.co/HwroPYv8pY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674793399141146624/photo/1 | 13 | 10 | None | None | None | None | None |
| 1886 | 674790488185167872 | NaN | NaN | 2015-12-10 03:19:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | ER... MER... GERD 13/10 https://t.co/L1puJISV1a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674790488185167872/photo/1 | 13 | 10 | None | None | None | None | None |
| 1887 | 674788554665512960 | NaN | NaN | 2015-12-10 03:11:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674788554665512960/photo/1 | 9 | 10 | Maggie | None | None | None | None |
| 1888 | 674781762103414784 | NaN | NaN | 2015-12-10 02:44:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674781762103414784/photo/1 | 8 | 10 | None | None | None | None | None |
| 1889 | 674774481756377088 | NaN | NaN | 2015-12-10 02:15:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674774481756377088/photo/1 | 11 | 10 | Superpup | None | None | pupper | None |
| 1890 | 674767892831932416 | NaN | NaN | 2015-12-10 01:49:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674767892831932416/photo/1 | 12 | 10 | None | None | None | None | None |
| 1891 | 674764817387900928 | NaN | NaN | 2015-12-10 01:37:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674764817387900928/photo/1,https://twitter.com/dog_rates/status/674764817387900928/photo/1 | 10 | 10 | None | None | None | None | None |
| 1892 | 674754018082705410 | 6.747522e+17 | 4.196984e+09 | 2015-12-10 00:54:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674754018082705410/photo/1 | 12 | 10 | None | None | None | None | None |
| 1893 | 674752233200820224 | NaN | NaN | 2015-12-10 00:47:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674752233200820224/photo/1,https://twitter.com/dog_rates/status/674752233200820224/photo/1 | 12 | 10 | None | None | None | None | None |
| 1894 | 674743008475090944 | NaN | NaN | 2015-12-10 00:10:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674743008475090944/photo/1 | 10 | 10 | Sophie | None | None | None | None |
| 1895 | 674742531037511680 | 6.747400e+17 | 4.196984e+09 | 2015-12-10 00:08:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 1896 | 674739953134403584 | NaN | NaN | 2015-12-09 23:58:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674739953134403584/photo/1 | 11 | 10 | None | None | None | None | None |
| 1897 | 674737130913071104 | NaN | NaN | 2015-12-09 23:47:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674737130913071104/photo/1 | 10 | 10 | Rufio | None | None | pupper | None |
| 1898 | 674690135443775488 | NaN | NaN | 2015-12-09 20:40:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674690135443775488/photo/1 | 3 | 10 | Patrick | None | None | None | None |
| 1899 | 674670581682434048 | NaN | NaN | 2015-12-09 19:22:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674670581682434048/photo/1 | 9 | 10 | Jeb | None | None | None | None |
| 1900 | 674664755118911488 | NaN | NaN | 2015-12-09 18:59:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674664755118911488/photo/1 | 10 | 10 | Rodman | None | None | None | None |
| 1901 | 674646392044941312 | NaN | NaN | 2015-12-09 17:46:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674646392044941312/photo/1 | 5 | 10 | None | None | None | None | None |
| 1902 | 674644256330530816 | NaN | NaN | 2015-12-09 17:38:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674644256330530816/photo/1 | 11 | 10 | None | None | None | None | None |
| 1903 | 674638615994089473 | NaN | NaN | 2015-12-09 17:15:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674638615994089473/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1904 | 674632714662858753 | NaN | NaN | 2015-12-09 16:52:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674632714662858753/photo/1 | 5 | 10 | None | None | None | None | None |
| 1905 | 674606911342424069 | 6.744689e+17 | 4.196984e+09 | 2015-12-09 15:09:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1906 | 674468880899788800 | NaN | NaN | 2015-12-09 06:01:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674468880899788800/photo/1,https://twitter.com/dog_rates/status/674468880899788800/photo/1 | 13 | 10 | Louis | None | None | None | None |
| 1907 | 674447403907457024 | NaN | NaN | 2015-12-09 04:36:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674447403907457024/photo/1 | 10 | 10 | None | None | None | pupper | None |
| 1908 | 674436901579923456 | NaN | NaN | 2015-12-09 03:54:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674436901579923456/photo/1 | 9 | 10 | Bailey | None | None | None | None |
| 1909 | 674422304705744896 | NaN | NaN | 2015-12-09 02:56:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674422304705744896/photo/1 | 12 | 10 | Ava | None | None | None | None |
| 1910 | 674416750885273600 | NaN | NaN | 2015-12-09 02:34:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674416750885273600/photo/1 | 10 | 10 | Jonah | None | None | None | None |
| 1911 | 674410619106390016 | NaN | NaN | 2015-12-09 02:09:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674410619106390016/photo/1 | 10 | 10 | Lenny | None | None | None | None |
| 1912 | 674394782723014656 | NaN | NaN | 2015-12-09 01:07:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674394782723014656/photo/1 | 8 | 10 | Gary | None | None | None | None |
| 1913 | 674372068062928900 | NaN | NaN | 2015-12-08 23:36:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Chesney. On the outside he stays calm & collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674372068062928900/photo/1 | 10 | 10 | Chesney | None | None | None | None |
| 1914 | 674330906434379776 | 6.658147e+17 | 1.637468e+07 | 2015-12-08 20:53:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13/10\n@ABC7 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1915 | 674318007229923329 | NaN | NaN | 2015-12-08 20:01:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674318007229923329/photo/1 | 8 | 10 | Lennon | None | None | pupper | None |
| 1916 | 674307341513269249 | NaN | NaN | 2015-12-08 19:19:32 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | This is life-changing. 12/10 https://t.co/SroTpI6psB | NaN | NaN | NaN | https://vine.co/v/i7nWzrenw5h | 12 | 10 | life | None | None | None | None |
| 1917 | 674291837063053312 | NaN | NaN | 2015-12-08 18:17:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674291837063053312/photo/1 | 11 | 10 | Kenny | None | None | None | None |
| 1918 | 674271431610523648 | NaN | NaN | 2015-12-08 16:56:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674271431610523648/photo/1 | 10 | 10 | None | None | None | None | None |
| 1919 | 674269164442398721 | NaN | NaN | 2015-12-08 16:47:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674269164442398721/photo/1 | 8 | 10 | Bob | None | None | None | None |
| 1920 | 674265582246694913 | NaN | NaN | 2015-12-08 16:33:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674265582246694913/photo/1 | 2 | 10 | Henry | None | None | None | None |
| 1921 | 674262580978937856 | NaN | NaN | 2015-12-08 16:21:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674262580978937856/photo/1 | 9 | 10 | Gus | None | None | pupper | None |
| 1922 | 674255168825880576 | NaN | NaN | 2015-12-08 15:52:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674255168825880576/photo/1 | 10 | 10 | Bobbay | None | None | None | None |
| 1923 | 674082852460433408 | NaN | NaN | 2015-12-08 04:27:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674082852460433408/photo/1 | 11 | 10 | a | None | None | None | None |
| 1924 | 674075285688614912 | NaN | NaN | 2015-12-08 03:57:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674075285688614912/photo/1 | 11 | 10 | Mitch | None | None | None | None |
| 1925 | 674063288070742018 | NaN | NaN | 2015-12-08 03:09:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674063288070742018/photo/1 | 5 | 10 | Earl | None | None | None | None |
| 1926 | 674053186244734976 | NaN | NaN | 2015-12-08 02:29:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674053186244734976/photo/1 | 10 | 10 | Stanley | None | None | None | None |
| 1927 | 674051556661161984 | NaN | NaN | 2015-12-08 02:23:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674051556661161984/photo/1 | 10 | 10 | Lucy | None | None | None | None |
| 1928 | 674045139690631169 | NaN | NaN | 2015-12-08 01:57:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674045139690631169/photo/1 | 3 | 10 | None | None | None | None | None |
| 1929 | 674042553264685056 | NaN | NaN | 2015-12-08 01:47:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674042553264685056/photo/1 | 12 | 10 | None | None | None | None | None |
| 1930 | 674038233588723717 | NaN | NaN | 2015-12-08 01:30:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674038233588723717/photo/1 | 12 | 10 | Kaiya | None | None | pupper | None |
| 1931 | 674036086168010753 | NaN | NaN | 2015-12-08 01:21:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674036086168010753/photo/1 | 9 | 10 | Daisy | None | None | None | None |
| 1932 | 674024893172875264 | NaN | NaN | 2015-12-08 00:37:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674024893172875264/photo/1 | 10 | 10 | None | None | None | None | None |
| 1933 | 674019345211760640 | NaN | NaN | 2015-12-08 00:15:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674019345211760640/photo/1 | 10 | 10 | Acro | None | None | None | None |
| 1934 | 674014384960745472 | NaN | NaN | 2015-12-07 23:55:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674014384960745472/photo/1 | 11 | 10 | Aiden | None | None | None | None |
| 1935 | 674008982932058114 | NaN | NaN | 2015-12-07 23:33:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674008982932058114/photo/1 | 10 | 10 | None | None | None | None | None |
| 1936 | 673956914389192708 | NaN | NaN | 2015-12-07 20:07:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673956914389192708/photo/1 | 10 | 10 | one | None | None | pupper | None |
| 1937 | 673919437611909120 | NaN | NaN | 2015-12-07 17:38:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673919437611909120/photo/1 | 11 | 10 | Obie | None | None | pupper | None |
| 1938 | 673906403526995968 | NaN | NaN | 2015-12-07 16:46:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673906403526995968/photo/1 | 3 | 10 | None | None | None | None | None |
| 1939 | 673887867907739649 | NaN | NaN | 2015-12-07 15:32:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673887867907739649/photo/1,https://twitter.com/dog_rates/status/673887867907739649/photo/1 | 10 | 10 | None | None | None | None | None |
| 1940 | 673716320723169284 | 6.737159e+17 | 4.196984e+09 | 2015-12-07 04:11:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 1941 | 673715861853720576 | NaN | NaN | 2015-12-07 04:09:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673715861853720576/photo/1 | 4 | 10 | a | None | None | None | None |
| 1942 | 673711475735838725 | NaN | NaN | 2015-12-07 03:51:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673711475735838725/photo/1 | 10 | 10 | None | None | None | None | None |
| 1943 | 673709992831262724 | NaN | NaN | 2015-12-07 03:45:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673709992831262724/photo/1 | 12 | 10 | None | None | None | None | None |
| 1944 | 673708611235921920 | NaN | NaN | 2015-12-07 03:40:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673708611235921920/photo/1 | 12 | 10 | Riley | None | None | None | None |
| 1945 | 673707060090052608 | NaN | NaN | 2015-12-07 03:34:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673707060090052608/photo/1,https://twitter.com/dog_rates/status/673707060090052608/photo/1 | 10 | 10 | Raymond | None | None | pupper | None |
| 1946 | 673705679337693185 | NaN | NaN | 2015-12-07 03:28:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673705679337693185/photo/1 | 8 | 10 | Dot | None | None | None | None |
| 1947 | 673700254269775872 | NaN | NaN | 2015-12-07 03:07:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673700254269775872/photo/1 | 3 | 10 | None | None | None | None | None |
| 1948 | 673697980713705472 | NaN | NaN | 2015-12-07 02:58:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673697980713705472/photo/1,https://twitter.com/dog_rates/status/673697980713705472/photo/1 | 8 | 10 | Pickles | None | None | pupper | None |
| 1949 | 673689733134946305 | NaN | NaN | 2015-12-07 02:25:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673689733134946305/photo/1,https://twitter.com/dog_rates/status/673689733134946305/photo/1 | 11 | 10 | None | None | None | None | None |
| 1950 | 673688752737402881 | NaN | NaN | 2015-12-07 02:21:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673688752737402881/photo/1 | 9 | 10 | Larry | None | None | None | None |
| 1951 | 673686845050527744 | NaN | NaN | 2015-12-07 02:13:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673686845050527744/photo/1 | 11 | 10 | George | None | None | None | None |
| 1952 | 673680198160809984 | NaN | NaN | 2015-12-07 01:47:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673680198160809984/photo/1 | 13 | 10 | Shnuggles | None | None | None | None |
| 1953 | 673662677122719744 | NaN | NaN | 2015-12-07 00:37:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673662677122719744/photo/1 | 12 | 10 | Kendall | None | None | None | None |
| 1954 | 673656262056419329 | NaN | NaN | 2015-12-07 00:12:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673656262056419329/photo/1 | 10 | 10 | Albert | None | None | pupper | None |
| 1955 | 673636718965334016 | NaN | NaN | 2015-12-06 22:54:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673636718965334016/photo/1 | 10 | 10 | a | None | None | None | None |
| 1956 | 673612854080196609 | NaN | NaN | 2015-12-06 21:19:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673612854080196609/photo/1 | 7 | 10 | Jeffri | None | None | pupper | None |
| 1957 | 673583129559498752 | NaN | NaN | 2015-12-06 19:21:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673583129559498752/photo/1 | 11 | 10 | Sandy | None | None | None | None |
| 1958 | 673580926094458881 | NaN | NaN | 2015-12-06 19:13:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673580926094458881/photo/1 | 8 | 10 | None | None | None | None | None |
| 1959 | 673576835670777856 | NaN | NaN | 2015-12-06 18:56:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673576835670777856/photo/1 | 7 | 10 | None | None | None | None | None |
| 1960 | 673363615379013632 | NaN | NaN | 2015-12-06 04:49:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673363615379013632/photo/1 | 11 | 10 | None | None | None | pupper | None |
| 1961 | 673359818736984064 | NaN | NaN | 2015-12-06 04:34:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673359818736984064/photo/1 | 8 | 10 | Steve | None | None | None | None |
| 1962 | 673355879178194945 | NaN | NaN | 2015-12-06 04:18:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1,https://twitter.com/dog_rates/status/673355879178194945/photo/1 | 11 | 10 | Koda | None | None | None | None |
| 1963 | 673352124999274496 | NaN | NaN | 2015-12-06 04:03:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673352124999274496/photo/1 | 12 | 10 | None | None | None | None | None |
| 1964 | 673350198937153538 | NaN | NaN | 2015-12-06 03:56:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673350198937153538/photo/1 | 9 | 10 | Bella | None | None | None | None |
| 1965 | 673345638550134785 | NaN | NaN | 2015-12-06 03:38:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673345638550134785/photo/1 | 7 | 10 | Gerald | None | None | None | None |
| 1966 | 673343217010679808 | NaN | NaN | 2015-12-06 03:28:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673343217010679808/photo/1 | 11 | 10 | None | None | None | None | None |
| 1967 | 673342308415348736 | NaN | NaN | 2015-12-06 03:24:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673342308415348736/photo/1 | 10 | 10 | Django | None | None | pupper | None |
| 1968 | 673320132811366400 | NaN | NaN | 2015-12-06 01:56:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1,https://twitter.com/dog_rates/status/673320132811366400/photo/1 | 11 | 10 | Frankie | None | None | None | None |
| 1969 | 673317986296586240 | NaN | NaN | 2015-12-06 01:48:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673317986296586240/photo/1,https://twitter.com/dog_rates/status/673317986296586240/photo/1 | 10 | 10 | None | None | None | None | None |
| 1970 | 673295268553605120 | NaN | NaN | 2015-12-06 00:17:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673295268553605120/photo/1 | 8 | 10 | Eve | None | None | pupper | None |
| 1971 | 673270968295534593 | NaN | NaN | 2015-12-05 22:41:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673270968295534593/photo/1 | 11 | 10 | Mac | None | None | None | None |
| 1972 | 673240798075449344 | NaN | NaN | 2015-12-05 20:41:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673240798075449344/photo/1 | 6 | 10 | None | None | None | None | None |
| 1973 | 673213039743795200 | NaN | NaN | 2015-12-05 18:51:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673213039743795200/photo/1 | 10 | 10 | Dexter | None | None | None | None |
| 1974 | 673148804208660480 | NaN | NaN | 2015-12-05 14:35:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673148804208660480/photo/1 | 8 | 10 | Fletcher | None | None | pupper | None |
| 1975 | 672997845381865473 | NaN | NaN | 2015-12-05 04:36:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672997845381865473/photo/1 | 12 | 10 | Kenzie | None | None | None | None |
| 1976 | 672995267319328768 | NaN | NaN | 2015-12-05 04:25:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672995267319328768/photo/1 | 8 | 10 | Pumpkin | None | None | None | None |
| 1977 | 672988786805112832 | NaN | NaN | 2015-12-05 04:00:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672988786805112832/photo/1 | 10 | 10 | Schnozz | None | None | pupper | None |
| 1978 | 672984142909456390 | NaN | NaN | 2015-12-05 03:41:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672984142909456390/photo/1 | 9 | 10 | None | None | None | None | None |
| 1979 | 672980819271634944 | NaN | NaN | 2015-12-05 03:28:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672980819271634944/photo/1 | 5 | 10 | None | None | None | None | None |
| 1980 | 672975131468300288 | NaN | NaN | 2015-12-05 03:05:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672975131468300288/photo/1 | 10 | 10 | Chuckles | None | None | pupper | None |
| 1981 | 672970152493887488 | NaN | NaN | 2015-12-05 02:46:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672970152493887488/photo/1 | 7 | 10 | Chet | None | None | pupper | None |
| 1982 | 672968025906282496 | NaN | NaN | 2015-12-05 02:37:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672968025906282496/photo/1 | 11 | 10 | Gustaf | None | None | None | None |
| 1983 | 672964561327235073 | NaN | NaN | 2015-12-05 02:23:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672964561327235073/photo/1 | 10 | 10 | Terry | None | None | None | None |
| 1984 | 672902681409806336 | NaN | NaN | 2015-12-04 22:17:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672902681409806336/photo/1 | 9 | 10 | Jimison | None | None | None | None |
| 1985 | 672898206762672129 | NaN | NaN | 2015-12-04 22:00:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672898206762672129/photo/1 | 11 | 10 | Cheryl | None | None | pupper | None |
| 1986 | 672884426393653248 | NaN | NaN | 2015-12-04 21:05:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672884426393653248/photo/1 | 6 | 10 | None | None | None | None | None |
| 1987 | 672877615439593473 | NaN | NaN | 2015-12-04 20:38:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672877615439593473/photo/1 | 8 | 10 | Oscar | None | None | None | None |
| 1988 | 672834301050937345 | NaN | NaN | 2015-12-04 17:46:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672834301050937345/photo/1 | 10 | 10 | Ed | None | None | None | None |
| 1989 | 672828477930868736 | NaN | NaN | 2015-12-04 17:23:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672828477930868736/photo/1 | 9 | 10 | Jerry | None | None | None | None |
| 1990 | 672640509974827008 | NaN | NaN | 2015-12-04 04:56:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672640509974827008/photo/1 | 9 | 10 | Leonidas | None | None | None | None |
| 1991 | 672622327801233409 | NaN | NaN | 2015-12-04 03:43:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672622327801233409/photo/1 | 12 | 10 | None | None | None | pupper | None |
| 1992 | 672614745925664768 | NaN | NaN | 2015-12-04 03:13:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672614745925664768/photo/1 | 6 | 10 | Norman | None | None | pupper | None |
| 1993 | 672609152938721280 | NaN | NaN | 2015-12-04 02:51:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672609152938721280/photo/1 | 9 | 10 | Caryl | None | None | None | None |
| 1994 | 672604026190569472 | NaN | NaN | 2015-12-04 02:31:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672604026190569472/photo/1 | 11 | 10 | a | None | None | None | None |
| 1995 | 672594978741354496 | NaN | NaN | 2015-12-04 01:55:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672594978741354496/photo/1 | 9 | 10 | Scott | None | None | pupper | None |
| 1996 | 672591762242805761 | NaN | NaN | 2015-12-04 01:42:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672591762242805761/photo/1 | 10 | 10 | Taz | None | None | None | None |
| 1997 | 672591271085670400 | NaN | NaN | 2015-12-04 01:40:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672591271085670400/photo/1 | 8 | 10 | None | None | None | None | None |
| 1998 | 672538107540070400 | NaN | NaN | 2015-12-03 22:09:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672538107540070400/photo/1 | 7 | 10 | Darby | None | None | None | None |
| 1999 | 672523490734551040 | NaN | NaN | 2015-12-03 21:11:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672523490734551040/photo/1 | 10 | 10 | None | None | None | None | None |
| 2000 | 672488522314567680 | NaN | NaN | 2015-12-03 18:52:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672488522314567680/photo/1 | 10 | 10 | Jackie | None | None | None | None |
| 2001 | 672482722825261057 | NaN | NaN | 2015-12-03 18:29:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672482722825261057/photo/1 | 10 | 10 | light | None | None | None | None |
| 2002 | 672481316919734272 | NaN | NaN | 2015-12-03 18:23:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672481316919734272/photo/1 | 12 | 10 | Jazz | None | None | pupper | None |
| 2003 | 672475084225949696 | NaN | NaN | 2015-12-03 17:58:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672475084225949696/photo/1 | 8 | 10 | Buddy | None | None | None | None |
| 2004 | 672466075045466113 | NaN | NaN | 2015-12-03 17:23:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672466075045466113/photo/1 | 12 | 10 | Franq | None | None | None | None |
| 2005 | 672272411274932228 | NaN | NaN | 2015-12-03 04:33:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672272411274932228/photo/1,https://twitter.com/dog_rates/status/672272411274932228/photo/1 | 11 | 10 | Pippin | None | None | None | None |
| 2006 | 672267570918129665 | NaN | NaN | 2015-12-03 04:14:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672267570918129665/photo/1 | 10 | 10 | None | None | None | None | None |
| 2007 | 672264251789176834 | NaN | NaN | 2015-12-03 04:01:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672264251789176834/photo/1 | 10 | 10 | Kreg | None | None | None | None |
| 2008 | 672256522047614977 | NaN | NaN | 2015-12-03 03:30:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672256522047614977/photo/1 | 8 | 10 | None | None | None | None | None |
| 2009 | 672254177670729728 | NaN | NaN | 2015-12-03 03:21:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672254177670729728/photo/1 | 11 | 10 | Rolf | None | None | pupper | None |
| 2010 | 672248013293752320 | NaN | NaN | 2015-12-03 02:56:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672248013293752320/photo/1 | 10 | 10 | None | None | None | None | None |
| 2011 | 672245253877968896 | NaN | NaN | 2015-12-03 02:45:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672245253877968896/photo/1 | 12 | 10 | Snickers | None | None | None | None |
| 2012 | 672239279297454080 | NaN | NaN | 2015-12-03 02:21:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672239279297454080/photo/1 | 7 | 10 | Ridley | None | None | None | None |
| 2013 | 672231046314901505 | NaN | NaN | 2015-12-03 01:49:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672231046314901505/photo/1 | 5 | 10 | None | None | None | None | None |
| 2014 | 672222792075620352 | NaN | NaN | 2015-12-03 01:16:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672222792075620352/photo/1 | 9 | 10 | Cal | None | None | None | None |
| 2015 | 672205392827572224 | NaN | NaN | 2015-12-03 00:07:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672205392827572224/photo/1 | 9 | 10 | Opal | None | None | pupper | None |
| 2016 | 672169685991993344 | NaN | NaN | 2015-12-02 21:45:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672169685991993344/photo/1 | 10 | 10 | Bradley | None | None | None | None |
| 2017 | 672160042234327040 | NaN | NaN | 2015-12-02 21:06:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672160042234327040/photo/1 | 8 | 10 | Bubba | None | None | pupper | None |
| 2018 | 672139350159835138 | NaN | NaN | 2015-12-02 19:44:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672139350159835138/photo/1 | 12 | 10 | None | None | None | None | None |
| 2019 | 672125275208069120 | NaN | NaN | 2015-12-02 18:48:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672125275208069120/photo/1 | 11 | 10 | just | None | None | None | None |
| 2020 | 672095186491711488 | NaN | NaN | 2015-12-02 16:49:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672095186491711488/photo/1 | 9 | 10 | Tuco | None | None | None | None |
| 2021 | 672082170312290304 | NaN | NaN | 2015-12-02 15:57:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672082170312290304/photo/1 | 11 | 10 | Patch | None | None | None | None |
| 2022 | 672068090318987265 | NaN | NaN | 2015-12-02 15:01:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672068090318987265/photo/1 | 7 | 10 | Gizmo | None | None | None | None |
| 2023 | 671896809300709376 | NaN | NaN | 2015-12-02 03:40:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671896809300709376/photo/1 | 10 | 10 | Lola | None | None | None | None |
| 2024 | 671891728106971137 | NaN | NaN | 2015-12-02 03:20:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671891728106971137/photo/1 | 11 | 10 | Mojo | None | None | None | None |
| 2025 | 671882082306625538 | NaN | NaN | 2015-12-02 02:42:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671882082306625538/photo/1 | 11 | 10 | Batdog | None | None | None | None |
| 2026 | 671879137494245376 | NaN | NaN | 2015-12-02 02:30:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671879137494245376/photo/1 | 5 | 10 | Brad | None | None | None | None |
| 2027 | 671874878652489728 | NaN | NaN | 2015-12-02 02:13:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671874878652489728/photo/1,https://twitter.com/dog_rates/status/671874878652489728/photo/1 | 10 | 10 | Mia | None | None | None | None |
| 2028 | 671866342182637568 | NaN | NaN | 2015-12-02 01:39:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671866342182637568/photo/1 | 10 | 10 | Dylan | None | None | None | None |
| 2029 | 671855973984772097 | NaN | NaN | 2015-12-02 00:58:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671855973984772097/photo/1 | 8 | 10 | None | None | None | None | None |
| 2030 | 671789708968640512 | NaN | NaN | 2015-12-01 20:35:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671789708968640512/photo/1 | 13 | 10 | space | None | None | None | None |
| 2031 | 671768281401958400 | NaN | NaN | 2015-12-01 19:10:13 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671768281401958400/photo/1,https://twitter.com/dog_rates/status/671768281401958400/photo/1 | 10 | 10 | None | None | None | None | None |
| 2032 | 671763349865160704 | NaN | NaN | 2015-12-01 18:50:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671763349865160704/photo/1 | 9 | 10 | Mark | None | None | None | None |
| 2033 | 671744970634719232 | NaN | NaN | 2015-12-01 17:37:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671744970634719232/photo/1 | 6 | 10 | None | None | None | None | None |
| 2034 | 671743150407421952 | NaN | NaN | 2015-12-01 17:30:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671743150407421952/photo/1 | 11 | 10 | a | None | None | None | None |
| 2035 | 671735591348891648 | NaN | NaN | 2015-12-01 17:00:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1,https://twitter.com/dog_rates/status/671735591348891648/photo/1 | 11 | 10 | Oscar | None | None | None | None |
| 2036 | 671729906628341761 | 6.715610e+17 | 4.196984e+09 | 2015-12-01 16:37:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671729906628341761/photo/1 | 13 | 10 | None | None | None | None | None |
| 2037 | 671561002136281088 | NaN | NaN | 2015-12-01 05:26:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671561002136281088/photo/1 | 13 | 10 | the | None | None | None | None |
| 2038 | 671550332464455680 | 6.715449e+17 | 4.196984e+09 | 2015-12-01 04:44:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 2039 | 671547767500775424 | NaN | NaN | 2015-12-01 04:33:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671547767500775424/photo/1,https://twitter.com/dog_rates/status/671547767500775424/photo/1 | 10 | 10 | Marley | None | None | None | None |
| 2040 | 671544874165002241 | NaN | NaN | 2015-12-01 04:22:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671544874165002241/photo/1 | 6 | 10 | None | None | None | None | None |
| 2041 | 671542985629241344 | NaN | NaN | 2015-12-01 04:14:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671542985629241344/photo/1 | 10 | 10 | JD | None | None | None | None |
| 2042 | 671538301157904385 | NaN | NaN | 2015-12-01 03:56:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671538301157904385/photo/1 | 8 | 10 | Baxter | None | None | None | None |
| 2043 | 671536543010570240 | NaN | NaN | 2015-12-01 03:49:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671536543010570240/photo/1 | 9 | 10 | Reginald | None | None | None | None |
| 2044 | 671533943490011136 | NaN | NaN | 2015-12-01 03:39:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671533943490011136/photo/1 | 6 | 10 | None | None | None | None | None |
| 2045 | 671528761649688577 | NaN | NaN | 2015-12-01 03:18:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671528761649688577/photo/1 | 10 | 10 | Jax | None | None | None | None |
| 2046 | 671520732782923777 | NaN | NaN | 2015-12-01 02:46:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671520732782923777/photo/1 | 10 | 10 | Alejandro | None | None | None | None |
| 2047 | 671518598289059840 | NaN | NaN | 2015-12-01 02:38:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671518598289059840/photo/1 | 9 | 10 | Scruffers | None | None | None | None |
| 2048 | 671511350426865664 | NaN | NaN | 2015-12-01 02:09:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671511350426865664/photo/1 | 8 | 10 | Hammond | None | None | None | None |
| 2049 | 671504605491109889 | NaN | NaN | 2015-12-01 01:42:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671504605491109889/photo/1,https://twitter.com/dog_rates/status/671504605491109889/photo/1 | 11 | 10 | Charlie | None | None | None | None |
| 2050 | 671497587707535361 | NaN | NaN | 2015-12-01 01:14:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671497587707535361/photo/1 | 11 | 10 | Pip | None | None | None | None |
| 2051 | 671488513339211776 | NaN | NaN | 2015-12-01 00:38:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671488513339211776/photo/1 | 8 | 10 | Julius | None | None | None | None |
| 2052 | 671486386088865792 | NaN | NaN | 2015-12-01 00:30:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671486386088865792/photo/1 | 10 | 10 | Malcolm | None | None | None | None |
| 2053 | 671485057807351808 | NaN | NaN | 2015-12-01 00:24:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671485057807351808/photo/1 | 11 | 10 | Penelope | None | None | None | None |
| 2054 | 671390180817915904 | NaN | NaN | 2015-11-30 18:07:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671390180817915904/photo/1 | 7 | 10 | None | None | None | None | None |
| 2055 | 671362598324076544 | NaN | NaN | 2015-11-30 16:18:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671362598324076544/photo/1 | 11 | 10 | Tanner | None | None | None | None |
| 2056 | 671357843010908160 | NaN | NaN | 2015-11-30 15:59:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1,https://twitter.com/dog_rates/status/671357843010908160/photo/1 | 9 | 10 | None | None | None | None | None |
| 2057 | 671355857343524864 | NaN | NaN | 2015-11-30 15:51:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671355857343524864/photo/1 | 10 | 10 | Lou | None | None | None | None |
| 2058 | 671347597085433856 | NaN | NaN | 2015-11-30 15:18:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671347597085433856/photo/1,https://twitter.com/dog_rates/status/671347597085433856/photo/1 | 9 | 10 | Lola | None | None | None | None |
| 2059 | 671186162933985280 | NaN | NaN | 2015-11-30 04:37:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671186162933985280/photo/1 | 10 | 10 | Sparky | None | None | None | None |
| 2060 | 671182547775299584 | NaN | NaN | 2015-11-30 04:22:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671182547775299584/photo/1 | 12 | 10 | None | None | None | None | None |
| 2061 | 671166507850801152 | NaN | NaN | 2015-11-30 03:18:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671166507850801152/photo/1 | 10 | 10 | Herm | None | None | None | None |
| 2062 | 671163268581498880 | NaN | NaN | 2015-11-30 03:06:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671163268581498880/photo/1 | 8 | 10 | None | None | None | None | None |
| 2063 | 671159727754231808 | NaN | NaN | 2015-11-30 02:52:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671159727754231808/photo/1 | 5 | 10 | Anthony | None | None | None | None |
| 2064 | 671154572044468225 | NaN | NaN | 2015-11-30 02:31:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671154572044468225/photo/1 | 11 | 10 | Holly | None | None | None | None |
| 2065 | 671151324042559489 | NaN | NaN | 2015-11-30 02:18:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671151324042559489/photo/1 | 12 | 10 | None | None | None | None | None |
| 2066 | 671147085991960577 | NaN | NaN | 2015-11-30 02:01:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671147085991960577/photo/1 | 9 | 10 | a | None | None | None | None |
| 2067 | 671141549288370177 | NaN | NaN | 2015-11-30 01:39:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671141549288370177/photo/1 | 9 | 10 | None | None | None | None | None |
| 2068 | 671138694582165504 | NaN | NaN | 2015-11-30 01:28:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Me running from commitment. 10/10 https://t.co/ycVJyFFkES | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671138694582165504/photo/1 | 10 | 10 | None | None | None | None | None |
| 2069 | 671134062904504320 | NaN | NaN | 2015-11-30 01:10:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671134062904504320/photo/1 | 8 | 10 | Clarence | None | None | None | None |
| 2070 | 671122204919246848 | NaN | NaN | 2015-11-30 00:22:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671122204919246848/photo/1 | 4 | 10 | None | None | None | None | None |
| 2071 | 671115716440031232 | NaN | NaN | 2015-11-29 23:57:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671115716440031232/photo/1 | 6 | 10 | Phred | None | None | None | None |
| 2072 | 671109016219725825 | NaN | NaN | 2015-11-29 23:30:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671109016219725825/photo/1 | 8 | 10 | Toby | None | None | None | None |
| 2073 | 670995969505435648 | NaN | NaN | 2015-11-29 16:01:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1,https://twitter.com/dog_rates/status/670995969505435648/photo/1 | 12 | 10 | None | None | None | None | None |
| 2074 | 670842764863651840 | NaN | NaN | 2015-11-29 05:52:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670842764863651840/photo/1 | 420 | 10 | None | None | None | None | None |
| 2075 | 670840546554966016 | NaN | NaN | 2015-11-29 05:43:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670840546554966016/photo/1 | 10 | 10 | Colby | None | None | None | None |
| 2076 | 670838202509447168 | NaN | NaN | 2015-11-29 05:34:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670838202509447168/photo/1 | 4 | 10 | None | None | None | None | None |
| 2077 | 670833812859932673 | NaN | NaN | 2015-11-29 05:16:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670833812859932673/photo/1 | 7 | 10 | Jett | None | None | None | None |
| 2078 | 670832455012716544 | NaN | NaN | 2015-11-29 05:11:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670832455012716544/photo/1 | 10 | 10 | Amy | None | None | None | None |
| 2079 | 670826280409919488 | NaN | NaN | 2015-11-29 04:47:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670826280409919488/photo/1 | 2 | 10 | None | None | None | None | None |
| 2080 | 670823764196741120 | NaN | NaN | 2015-11-29 04:37:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670823764196741120/photo/1 | 12 | 10 | Remington | None | None | None | None |
| 2081 | 670822709593571328 | NaN | NaN | 2015-11-29 04:32:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670822709593571328/photo/1 | 10 | 10 | None | None | None | None | None |
| 2082 | 670815497391357952 | NaN | NaN | 2015-11-29 04:04:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670815497391357952/photo/1 | 10 | 10 | Sage | None | None | None | None |
| 2083 | 670811965569282048 | NaN | NaN | 2015-11-29 03:50:10 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670811965569282048/photo/1 | 10 | 10 | Maggie | None | None | None | None |
| 2084 | 670807719151067136 | NaN | NaN | 2015-11-29 03:33:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1,https://twitter.com/dog_rates/status/670807719151067136/photo/1 | 11 | 10 | Andy | None | None | None | None |
| 2085 | 670804601705242624 | NaN | NaN | 2015-11-29 03:20:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670804601705242624/photo/1 | 10 | 10 | Mason | None | None | None | None |
| 2086 | 670803562457407488 | NaN | NaN | 2015-11-29 03:16:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670803562457407488/photo/1 | 10 | 10 | None | None | None | None | None |
| 2087 | 670797304698376195 | NaN | NaN | 2015-11-29 02:51:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670797304698376195/photo/1 | 11 | 10 | Trigger | None | None | None | None |
| 2088 | 670792680469889025 | NaN | NaN | 2015-11-29 02:33:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670792680469889025/photo/1 | 7 | 10 | Antony | None | None | None | None |
| 2089 | 670789397210615808 | NaN | NaN | 2015-11-29 02:20:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670789397210615808/photo/1 | 9 | 10 | None | None | None | None | None |
| 2090 | 670786190031921152 | NaN | NaN | 2015-11-29 02:07:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670786190031921152/photo/1 | 8 | 10 | Creg | None | None | None | None |
| 2091 | 670783437142401025 | NaN | NaN | 2015-11-29 01:56:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670783437142401025/photo/1 | 1 | 10 | None | None | None | None | None |
| 2092 | 670782429121134593 | NaN | NaN | 2015-11-29 01:52:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670782429121134593/photo/1 | 5 | 10 | None | None | None | None | None |
| 2093 | 670780561024270336 | NaN | NaN | 2015-11-29 01:45:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670780561024270336/photo/1 | 7 | 10 | Traviss | None | None | None | None |
| 2094 | 670778058496974848 | NaN | NaN | 2015-11-29 01:35:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670778058496974848/photo/1 | 10 | 10 | None | None | None | None | None |
| 2095 | 670764103623966721 | NaN | NaN | 2015-11-29 00:39:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670764103623966721/photo/1 | 10 | 10 | Vincent | None | None | None | None |
| 2096 | 670755717859713024 | NaN | NaN | 2015-11-29 00:06:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670755717859713024/photo/1 | 9 | 10 | Gin | None | None | None | None |
| 2097 | 670733412878163972 | NaN | NaN | 2015-11-28 22:38:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670733412878163972/photo/1 | 8 | 10 | Jerry | None | None | None | None |
| 2098 | 670727704916926465 | NaN | NaN | 2015-11-28 22:15:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670727704916926465/photo/1 | 10 | 10 | Jeffrie | None | None | None | None |
| 2099 | 670717338665226240 | NaN | NaN | 2015-11-28 21:34:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670717338665226240/photo/1 | 12 | 10 | None | None | None | None | None |
| 2100 | 670704688707301377 | NaN | NaN | 2015-11-28 20:43:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670704688707301377/photo/1 | 6 | 10 | Danny | None | None | None | None |
| 2101 | 670691627984359425 | NaN | NaN | 2015-11-28 19:51:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670691627984359425/photo/1 | 8 | 10 | Ester | None | None | None | None |
| 2102 | 670679630144274432 | NaN | NaN | 2015-11-28 19:04:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670679630144274432/photo/1 | 8 | 10 | Pluto | None | None | None | None |
| 2103 | 670676092097810432 | NaN | NaN | 2015-11-28 18:50:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670676092097810432/photo/1 | 8 | 10 | Bloo | None | None | None | None |
| 2104 | 670668383499735048 | NaN | NaN | 2015-11-28 18:19:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670668383499735048/photo/1 | 10 | 10 | Phineas | None | None | None | None |
| 2105 | 670474236058800128 | NaN | NaN | 2015-11-28 05:28:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670474236058800128/photo/1 | 10 | 10 | None | None | None | None | None |
| 2106 | 670468609693655041 | NaN | NaN | 2015-11-28 05:05:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670468609693655041/photo/1 | 10 | 10 | Edd | None | None | None | None |
| 2107 | 670465786746662913 | NaN | NaN | 2015-11-28 04:54:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670465786746662913/photo/1 | 7 | 10 | None | None | None | None | None |
| 2108 | 670452855871037440 | NaN | NaN | 2015-11-28 04:03:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670452855871037440/photo/1 | 11 | 10 | None | None | None | None | None |
| 2109 | 670449342516494336 | NaN | NaN | 2015-11-28 03:49:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670449342516494336/photo/1 | 5 | 10 | None | None | None | None | None |
| 2110 | 670444955656130560 | NaN | NaN | 2015-11-28 03:31:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670444955656130560/photo/1 | 10 | 10 | Paull | None | None | None | None |
| 2111 | 670442337873600512 | NaN | NaN | 2015-11-28 03:21:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670442337873600512/photo/1 | 11 | 10 | Koda | None | None | None | None |
| 2112 | 670435821946826752 | NaN | NaN | 2015-11-28 02:55:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670435821946826752/photo/1 | 10 | 10 | None | None | None | None | None |
| 2113 | 670434127938719744 | NaN | NaN | 2015-11-28 02:48:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670434127938719744/photo/1 | 11 | 10 | Hank | None | None | None | None |
| 2114 | 670433248821026816 | NaN | NaN | 2015-11-28 02:45:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670433248821026816/photo/1 | 10 | 10 | Sam | None | None | None | None |
| 2115 | 670428280563085312 | NaN | NaN | 2015-11-28 02:25:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670428280563085312/photo/1 | 11 | 10 | Willy | None | None | None | None |
| 2116 | 670427002554466305 | NaN | NaN | 2015-11-28 02:20:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670427002554466305/photo/1 | 9 | 10 | a | None | None | None | None |
| 2117 | 670421925039075328 | NaN | NaN | 2015-11-28 02:00:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Herb. 12/10 https://t.co/tLRyYvCci3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670421925039075328/photo/1 | 12 | 10 | Herb | None | None | None | None |
| 2118 | 670420569653809152 | NaN | NaN | 2015-11-28 01:54:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670420569653809152/photo/1 | 10 | 10 | Damon | None | None | None | None |
| 2119 | 670417414769758208 | NaN | NaN | 2015-11-28 01:42:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670417414769758208/photo/1 | 6 | 10 | None | None | None | None | None |
| 2120 | 670411370698022913 | NaN | NaN | 2015-11-28 01:18:21 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670411370698022913/photo/1 | 12 | 10 | Scooter | None | None | None | None |
| 2121 | 670408998013820928 | NaN | NaN | 2015-11-28 01:08:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670408998013820928/photo/1 | 10 | 10 | Peanut | None | None | None | None |
| 2122 | 670403879788544000 | NaN | NaN | 2015-11-28 00:48:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670403879788544000/photo/1 | 10 | 10 | Nigel | None | None | None | None |
| 2123 | 670385711116361728 | NaN | NaN | 2015-11-27 23:36:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670385711116361728/photo/1 | 8 | 10 | Larry | None | None | None | None |
| 2124 | 670374371102445568 | NaN | NaN | 2015-11-27 22:51:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670374371102445568/photo/1 | 12 | 10 | Daisy | None | None | None | None |
| 2125 | 670361874861563904 | NaN | NaN | 2015-11-27 22:01:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670361874861563904/photo/1 | 9 | 10 | a | None | None | None | None |
| 2126 | 670338931251150849 | NaN | NaN | 2015-11-27 20:30:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670338931251150849/photo/1 | 10 | 10 | Butters | None | None | None | None |
| 2127 | 670319130621435904 | NaN | NaN | 2015-11-27 19:11:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670319130621435904/photo/1 | 11 | 10 | None | None | None | None | None |
| 2128 | 670303360680108032 | NaN | NaN | 2015-11-27 18:09:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670303360680108032/photo/1 | 9 | 10 | a | None | None | None | None |
| 2129 | 670290420111441920 | NaN | NaN | 2015-11-27 17:17:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670290420111441920/photo/1 | 11 | 10 | Sandra | None | None | None | None |
| 2130 | 670093938074779648 | NaN | NaN | 2015-11-27 04:16:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670093938074779648/photo/1 | 9 | 10 | Wally | None | None | None | None |
| 2131 | 670086499208155136 | NaN | NaN | 2015-11-27 03:47:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670086499208155136/photo/1 | 10 | 10 | None | None | None | None | None |
| 2132 | 670079681849372674 | NaN | NaN | 2015-11-27 03:20:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670079681849372674/photo/1 | 10 | 10 | Fabio | None | None | None | None |
| 2133 | 670073503555706880 | NaN | NaN | 2015-11-27 02:55:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670073503555706880/photo/1 | 10 | 10 | Winston | None | None | None | None |
| 2134 | 670069087419133954 | NaN | NaN | 2015-11-27 02:38:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670069087419133954/photo/1 | 5 | 10 | Randall | None | None | None | None |
| 2135 | 670061506722140161 | NaN | NaN | 2015-11-27 02:08:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670061506722140161/photo/1 | 11 | 10 | Liam | None | None | None | None |
| 2136 | 670055038660800512 | NaN | NaN | 2015-11-27 01:42:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670055038660800512/photo/1 | 3 | 10 | Tommy | None | None | None | None |
| 2137 | 670046952931721218 | NaN | NaN | 2015-11-27 01:10:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670046952931721218/photo/1 | 11 | 10 | Ben | None | None | None | None |
| 2138 | 670040295598354432 | NaN | NaN | 2015-11-27 00:43:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670040295598354432/photo/1 | 10 | 10 | None | None | None | None | None |
| 2139 | 670037189829525505 | NaN | NaN | 2015-11-27 00:31:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670037189829525505/photo/1 | 5 | 10 | None | None | None | None | None |
| 2140 | 670003130994700288 | NaN | NaN | 2015-11-26 22:16:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670003130994700288/photo/1 | 10 | 10 | Raphael | None | None | None | None |
| 2141 | 669993076832759809 | NaN | NaN | 2015-11-26 21:36:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669993076832759809/photo/1 | 9 | 10 | Zoey | None | None | None | None |
| 2142 | 669972011175813120 | NaN | NaN | 2015-11-26 20:12:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669972011175813120/photo/1 | 10 | 10 | None | None | None | None | None |
| 2143 | 669970042633789440 | NaN | NaN | 2015-11-26 20:04:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669970042633789440/photo/1 | 10 | 10 | Julio | None | None | None | None |
| 2144 | 669942763794931712 | NaN | NaN | 2015-11-26 18:16:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669942763794931712/photo/1 | 11 | 10 | Andru | None | None | None | None |
| 2145 | 669926384437997569 | NaN | NaN | 2015-11-26 17:11:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669926384437997569/photo/1 | 12 | 10 | None | None | None | None | None |
| 2146 | 669923323644657664 | NaN | NaN | 2015-11-26 16:59:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669923323644657664/photo/1 | 10 | 10 | a | None | None | None | None |
| 2147 | 669753178989142016 | NaN | NaN | 2015-11-26 05:42:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669753178989142016/photo/1 | 10 | 10 | Chester | None | None | None | None |
| 2148 | 669749430875258880 | NaN | NaN | 2015-11-26 05:28:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669749430875258880/photo/1 | 8 | 10 | Clarence | None | None | None | None |
| 2149 | 669684865554620416 | 6.693544e+17 | 4.196984e+09 | 2015-11-26 01:11:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 2150 | 669683899023405056 | NaN | NaN | 2015-11-26 01:07:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669683899023405056/photo/1 | 10 | 10 | Kloey | None | None | None | None |
| 2151 | 669682095984410625 | NaN | NaN | 2015-11-26 01:00:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669682095984410625/photo/1 | 9 | 10 | Louie | None | None | None | None |
| 2152 | 669680153564442624 | NaN | NaN | 2015-11-26 00:52:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669680153564442624/photo/1 | 8 | 10 | Shawwn | None | None | None | None |
| 2153 | 669661792646373376 | NaN | NaN | 2015-11-25 23:39:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669661792646373376/photo/1 | 5 | 10 | a | None | None | None | None |
| 2154 | 669625907762618368 | NaN | NaN | 2015-11-25 21:17:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669625907762618368/photo/1 | 12 | 10 | Penny | None | None | None | None |
| 2155 | 669603084620980224 | NaN | NaN | 2015-11-25 19:46:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669603084620980224/photo/1 | 10 | 10 | None | None | None | None | None |
| 2156 | 669597912108789760 | NaN | NaN | 2015-11-25 19:25:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669597912108789760/photo/1 | 10 | 10 | Skye | None | None | None | None |
| 2157 | 669583744538451968 | NaN | NaN | 2015-11-25 18:29:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669583744538451968/photo/1 | 6 | 10 | None | None | None | None | None |
| 2158 | 669573570759163904 | NaN | NaN | 2015-11-25 17:49:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669573570759163904/photo/1 | 10 | 10 | Linda | None | None | None | None |
| 2159 | 669571471778410496 | NaN | NaN | 2015-11-25 17:40:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669571471778410496/photo/1 | 7 | 10 | Keith | None | None | None | None |
| 2160 | 669567591774625800 | NaN | NaN | 2015-11-25 17:25:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669567591774625800/photo/1 | 9 | 10 | Kollin | None | None | None | None |
| 2161 | 669564461267722241 | NaN | NaN | 2015-11-25 17:13:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669564461267722241/photo/1 | 10 | 10 | a | None | None | None | None |
| 2162 | 669393256313184256 | NaN | NaN | 2015-11-25 05:52:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669393256313184256/photo/1 | 10 | 10 | Ronduh | None | None | None | None |
| 2163 | 669375718304980992 | NaN | NaN | 2015-11-25 04:43:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669375718304980992/photo/1 | 6 | 10 | Billl | None | None | None | None |
| 2164 | 669371483794317312 | NaN | NaN | 2015-11-25 04:26:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669371483794317312/photo/1 | 10 | 10 | Oliviér | None | None | None | None |
| 2165 | 669367896104181761 | NaN | NaN | 2015-11-25 04:11:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669367896104181761/photo/1 | 10 | 10 | Chip | None | None | None | None |
| 2166 | 669363888236994561 | NaN | NaN | 2015-11-25 03:56:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669363888236994561/photo/1 | 10 | 10 | None | None | None | None | None |
| 2167 | 669359674819481600 | NaN | NaN | 2015-11-25 03:39:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669359674819481600/photo/1 | 11 | 10 | Saydee | None | None | None | None |
| 2168 | 669354382627049472 | NaN | NaN | 2015-11-25 03:18:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669354382627049472/photo/1 | 8 | 10 | Dug | None | None | None | None |
| 2169 | 669353438988365824 | 6.678065e+17 | 4.196984e+09 | 2015-11-25 03:14:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669353438988365824/photo/1 | 10 | 10 | Tessa | None | None | None | None |
| 2170 | 669351434509529089 | NaN | NaN | 2015-11-25 03:06:32 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669351434509529089/photo/1 | 10 | 10 | Sully | None | None | None | None |
| 2171 | 669328503091937280 | NaN | NaN | 2015-11-25 01:35:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669328503091937280/photo/1 | 12 | 10 | Kirk | None | None | None | None |
| 2172 | 669327207240699904 | NaN | NaN | 2015-11-25 01:30:16 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669327207240699904/photo/1 | 13 | 10 | None | None | None | None | None |
| 2173 | 669324657376567296 | NaN | NaN | 2015-11-25 01:20:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669324657376567296/photo/1 | 11 | 10 | Ralf | None | None | None | None |
| 2174 | 669216679721873412 | NaN | NaN | 2015-11-24 18:11:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669216679721873412/photo/1 | 8 | 10 | Clarq | None | None | None | None |
| 2175 | 669214165781868544 | NaN | NaN | 2015-11-24 18:01:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669214165781868544/photo/1 | 10 | 10 | Jaspers | None | None | None | None |
| 2176 | 669203728096960512 | NaN | NaN | 2015-11-24 17:19:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669203728096960512/photo/1 | 9 | 10 | Samsom | None | None | None | None |
| 2177 | 669037058363662336 | NaN | NaN | 2015-11-24 06:17:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669037058363662336/photo/1 | 10 | 10 | None | None | None | None | None |
| 2178 | 669015743032369152 | NaN | NaN | 2015-11-24 04:52:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669015743032369152/photo/1 | 10 | 10 | None | None | None | None | None |
| 2179 | 669006782128353280 | NaN | NaN | 2015-11-24 04:17:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669006782128353280/photo/1 | 12 | 10 | Tucker | None | None | None | None |
| 2180 | 669000397445533696 | NaN | NaN | 2015-11-24 03:51:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669000397445533696/photo/1 | 11 | 10 | Terrance | None | None | None | None |
| 2181 | 668994913074286592 | NaN | NaN | 2015-11-24 03:29:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668994913074286592/photo/1 | 5 | 10 | None | None | None | None | None |
| 2182 | 668992363537309700 | NaN | NaN | 2015-11-24 03:19:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668992363537309700/photo/1 | 8 | 10 | Harrison | None | None | None | None |
| 2183 | 668989615043424256 | NaN | NaN | 2015-11-24 03:08:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668989615043424256/photo/1 | 3 | 10 | Bernie | None | None | None | None |
| 2184 | 668988183816871936 | NaN | NaN | 2015-11-24 03:03:06 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668988183816871936/photo/1 | 7 | 10 | None | None | None | None | None |
| 2185 | 668986018524233728 | NaN | NaN | 2015-11-24 02:54:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668986018524233728/photo/1 | 9 | 10 | Ruby | None | None | None | None |
| 2186 | 668981893510119424 | NaN | NaN | 2015-11-24 02:38:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668981893510119424/photo/1 | 4 | 10 | None | None | None | None | None |
| 2187 | 668979806671884288 | NaN | NaN | 2015-11-24 02:29:49 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668979806671884288/photo/1 | 12 | 10 | Chaz | None | None | None | None |
| 2188 | 668975677807423489 | NaN | NaN | 2015-11-24 02:13:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668975677807423489/photo/1 | 11 | 10 | Jeremy | None | None | None | None |
| 2189 | 668967877119254528 | 6.689207e+17 | 2.143566e+07 | 2015-11-24 01:42:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 good shit Bubka\n@wane15 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 2190 | 668960084974809088 | NaN | NaN | 2015-11-24 01:11:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Jaycob. He got scared of the vacuum. Hide & seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668960084974809088/photo/1 | 10 | 10 | Jaycob | None | None | None | None |
| 2191 | 668955713004314625 | NaN | NaN | 2015-11-24 00:54:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668955713004314625/photo/1 | 10 | 10 | a | None | None | None | None |
| 2192 | 668932921458302977 | NaN | NaN | 2015-11-23 23:23:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668932921458302977/photo/1 | 9 | 10 | Herald | None | None | None | None |
| 2193 | 668902994700836864 | NaN | NaN | 2015-11-23 21:24:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668902994700836864/photo/1 | 11 | 10 | Lambeau | None | None | None | None |
| 2194 | 668892474547511297 | NaN | NaN | 2015-11-23 20:42:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668892474547511297/photo/1 | 11 | 10 | Ruffles | None | None | None | None |
| 2195 | 668872652652679168 | NaN | NaN | 2015-11-23 19:24:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668872652652679168/photo/1 | 11 | 10 | Amélie | None | None | None | None |
| 2196 | 668852170888998912 | NaN | NaN | 2015-11-23 18:02:38 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668852170888998912/photo/1 | 11 | 10 | Bobb | None | None | None | None |
| 2197 | 668826086256599040 | NaN | NaN | 2015-11-23 16:18:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668826086256599040/photo/1 | 10 | 10 | Banditt | None | None | None | None |
| 2198 | 668815180734689280 | NaN | NaN | 2015-11-23 15:35:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668815180734689280/photo/1 | 7 | 10 | a | None | None | None | None |
| 2199 | 668779399630725120 | NaN | NaN | 2015-11-23 13:13:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668779399630725120/photo/1 | 10 | 10 | Kevon | None | None | None | None |
| 2200 | 668655139528511488 | NaN | NaN | 2015-11-23 04:59:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668655139528511488/photo/1 | 11 | 10 | Winifred | None | None | None | None |
| 2201 | 668645506898350081 | NaN | NaN | 2015-11-23 04:21:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668645506898350081/photo/1 | 11 | 10 | None | None | None | None | None |
| 2202 | 668643542311546881 | NaN | NaN | 2015-11-23 04:13:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668643542311546881/photo/1 | 3 | 10 | None | None | None | None | None |
| 2203 | 668641109086707712 | NaN | NaN | 2015-11-23 04:03:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668641109086707712/photo/1 | 10 | 10 | Hanz | None | None | None | None |
| 2204 | 668636665813057536 | NaN | NaN | 2015-11-23 03:46:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668636665813057536/photo/1 | 10 | 10 | an | None | None | None | None |
| 2205 | 668633411083464705 | NaN | NaN | 2015-11-23 03:33:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668633411083464705/photo/1,https://twitter.com/dog_rates/status/668633411083464705/photo/1 | 10 | 10 | Churlie | None | None | None | None |
| 2206 | 668631377374486528 | NaN | NaN | 2015-11-23 03:25:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668631377374486528/photo/1 | 5 | 10 | Zeek | None | None | None | None |
| 2207 | 668627278264475648 | NaN | NaN | 2015-11-23 03:09:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668627278264475648/photo/1 | 9 | 10 | Timofy | None | None | None | None |
| 2208 | 668625577880875008 | NaN | NaN | 2015-11-23 03:02:14 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668625577880875008/photo/1 | 10 | 10 | Maks | None | None | None | None |
| 2209 | 668623201287675904 | NaN | NaN | 2015-11-23 02:52:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1,https://twitter.com/dog_rates/status/668623201287675904/photo/1 | 10 | 10 | Jomathan | None | None | None | None |
| 2210 | 668620235289837568 | NaN | NaN | 2015-11-23 02:41:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Kallie. There was a tornado in the area & the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668620235289837568/photo/1 | 10 | 10 | Kallie | None | None | None | None |
| 2211 | 668614819948453888 | NaN | NaN | 2015-11-23 02:19:29 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668614819948453888/photo/1 | 7 | 10 | a | None | None | None | None |
| 2212 | 668587383441514497 | NaN | NaN | 2015-11-23 00:30:28 +0000 | <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> | Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 | NaN | NaN | NaN | https://vine.co/v/ea0OwvPTx9l | 13 | 10 | the | None | None | None | None |
| 2213 | 668567822092664832 | NaN | NaN | 2015-11-22 23:12:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668567822092664832/photo/1 | 11 | 10 | Marvin | None | None | None | None |
| 2214 | 668544745690562560 | NaN | NaN | 2015-11-22 21:41:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668544745690562560/photo/1 | 10 | 10 | None | None | None | None | None |
| 2215 | 668542336805281792 | NaN | NaN | 2015-11-22 21:31:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668542336805281792/photo/1 | 10 | 10 | None | None | None | None | None |
| 2216 | 668537837512433665 | NaN | NaN | 2015-11-22 21:13:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668537837512433665/photo/1 | 8 | 10 | Spark | None | None | None | None |
| 2217 | 668528771708952576 | NaN | NaN | 2015-11-22 20:37:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668528771708952576/photo/1 | 12 | 10 | Gòrdón | None | None | None | None |
| 2218 | 668507509523615744 | NaN | NaN | 2015-11-22 19:13:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668507509523615744/photo/1 | 10 | 10 | a | None | None | None | None |
| 2219 | 668496999348633600 | NaN | NaN | 2015-11-22 18:31:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668496999348633600/photo/1 | 8 | 10 | Jo | None | None | None | None |
| 2220 | 668484198282485761 | NaN | NaN | 2015-11-22 17:40:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668484198282485761/photo/1 | 9 | 10 | None | None | None | None | None |
| 2221 | 668480044826800133 | NaN | NaN | 2015-11-22 17:23:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668480044826800133/photo/1 | 11 | 10 | DayZ | None | None | None | None |
| 2222 | 668466899341221888 | NaN | NaN | 2015-11-22 16:31:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668466899341221888/photo/1 | 4 | 10 | a | None | None | None | None |
| 2223 | 668297328638447616 | NaN | NaN | 2015-11-22 05:17:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668297328638447616/photo/1 | 9 | 10 | None | None | None | None | None |
| 2224 | 668291999406125056 | NaN | NaN | 2015-11-22 04:56:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I can't do better than he did. 10/10 https://t.co/fM0KXns7Or | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668291999406125056/photo/1 | 10 | 10 | None | None | None | None | None |
| 2225 | 668286279830867968 | NaN | NaN | 2015-11-22 04:33:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668286279830867968/photo/1 | 11 | 10 | Rusty | None | None | None | None |
| 2226 | 668274247790391296 | NaN | NaN | 2015-11-22 03:46:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668274247790391296/photo/1 | 10 | 10 | Sophie | None | None | None | None |
| 2227 | 668268907921326080 | NaN | NaN | 2015-11-22 03:24:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668268907921326080/photo/1 | 10 | 10 | None | None | None | None | None |
| 2228 | 668256321989451776 | NaN | NaN | 2015-11-22 02:34:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668256321989451776/photo/1 | 13 | 10 | Jareld | None | None | None | None |
| 2229 | 668248472370458624 | NaN | NaN | 2015-11-22 02:03:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668248472370458624/photo/1 | 8 | 10 | Bisquick | None | None | None | None |
| 2230 | 668237644992782336 | NaN | NaN | 2015-11-22 01:20:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668237644992782336/photo/1 | 10 | 10 | Torque | None | None | None | None |
| 2231 | 668226093875376128 | NaN | NaN | 2015-11-22 00:34:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668226093875376128/photo/1 | 10 | 10 | None | None | None | None | None |
| 2232 | 668221241640230912 | NaN | NaN | 2015-11-22 00:15:33 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668221241640230912/photo/1 | 10 | 10 | None | None | None | None | None |
| 2233 | 668204964695683073 | NaN | NaN | 2015-11-21 23:10:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668204964695683073/photo/1 | 8 | 10 | Ron | None | None | None | None |
| 2234 | 668190681446379520 | NaN | NaN | 2015-11-21 22:14:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668190681446379520/photo/1 | 12 | 10 | Skittles | None | None | None | None |
| 2235 | 668171859951755264 | NaN | NaN | 2015-11-21 20:59:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668171859951755264/photo/1 | 7 | 10 | a | None | None | None | None |
| 2236 | 668154635664932864 | NaN | NaN | 2015-11-21 19:50:53 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668154635664932864/photo/1 | 9 | 10 | None | None | None | None | None |
| 2237 | 668142349051129856 | NaN | NaN | 2015-11-21 19:02:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668142349051129856/photo/1 | 2 | 10 | None | None | None | None | None |
| 2238 | 668113020489474048 | NaN | NaN | 2015-11-21 17:05:31 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668113020489474048/photo/1 | 6 | 10 | Alfie | None | None | None | None |
| 2239 | 667937095915278337 | NaN | NaN | 2015-11-21 05:26:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667937095915278337/photo/1 | 3 | 10 | None | None | None | None | None |
| 2240 | 667924896115245057 | NaN | NaN | 2015-11-21 04:37:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667924896115245057/photo/1 | 9 | 10 | Jiminy | None | None | None | None |
| 2241 | 667915453470232577 | NaN | NaN | 2015-11-21 04:00:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667915453470232577/photo/1 | 10 | 10 | Otis | None | None | None | None |
| 2242 | 667911425562669056 | NaN | NaN | 2015-11-21 03:44:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667911425562669056/photo/1 | 5 | 10 | None | None | None | None | None |
| 2243 | 667902449697558528 | NaN | NaN | 2015-11-21 03:08:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667902449697558528/photo/1 | 9 | 10 | Cleopatricia | None | None | None | None |
| 2244 | 667886921285246976 | NaN | NaN | 2015-11-21 02:07:05 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667886921285246976/photo/1 | 11 | 10 | Erik | None | None | None | None |
| 2245 | 667885044254572545 | NaN | NaN | 2015-11-21 01:59:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667885044254572545/photo/1 | 10 | 10 | Stu | None | None | None | None |
| 2246 | 667878741721415682 | NaN | NaN | 2015-11-21 01:34:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 https://t.co/LvP1TTYSCN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667878741721415682/photo/1 | 2 | 10 | Tedrick | None | None | None | None |
| 2247 | 667873844930215936 | NaN | NaN | 2015-11-21 01:15:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667873844930215936/photo/1 | 10 | 10 | None | None | None | None | None |
| 2248 | 667866724293877760 | NaN | NaN | 2015-11-21 00:46:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667866724293877760/photo/1 | 10 | 10 | Shaggy | None | None | None | None |
| 2249 | 667861340749471744 | NaN | NaN | 2015-11-21 00:25:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667861340749471744/photo/1 | 9 | 10 | a | None | None | None | None |
| 2250 | 667832474953625600 | NaN | NaN | 2015-11-20 22:30:44 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667832474953625600/photo/1 | 12 | 10 | None | None | None | None | None |
| 2251 | 667806454573760512 | NaN | NaN | 2015-11-20 20:47:20 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667806454573760512/photo/1 | 10 | 10 | Filup | None | None | None | None |
| 2252 | 667801013445750784 | NaN | NaN | 2015-11-20 20:25:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | OMIGOD 12/10 https://t.co/SVMF4Frf1w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667801013445750784/photo/1 | 12 | 10 | None | None | None | None | None |
| 2253 | 667793409583771648 | NaN | NaN | 2015-11-20 19:55:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667793409583771648/photo/1 | 8 | 10 | None | None | None | None | None |
| 2254 | 667782464991965184 | NaN | NaN | 2015-11-20 19:12:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667782464991965184/photo/1 | 9 | 10 | None | None | None | None | None |
| 2255 | 667773195014021121 | NaN | NaN | 2015-11-20 18:35:10 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667773195014021121/photo/1 | 8 | 10 | a | None | None | None | None |
| 2256 | 667766675769573376 | NaN | NaN | 2015-11-20 18:09:16 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667766675769573376/photo/1 | 9 | 10 | Calvin | None | None | None | None |
| 2257 | 667728196545200128 | NaN | NaN | 2015-11-20 15:36:22 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667728196545200128/photo/1 | 11 | 10 | Olive | None | None | None | None |
| 2258 | 667724302356258817 | NaN | NaN | 2015-11-20 15:20:54 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667724302356258817/photo/1 | 7 | 10 | None | None | None | None | None |
| 2259 | 667550904950915073 | NaN | NaN | 2015-11-20 03:51:52 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | RT @dogratingrating: Exceptional talent. Original humor. Cutting edge, Nova Scotian comedian. 12/10 https://t.co/uarnTjBeVA | 6.675487e+17 | 4.296832e+09 | 2015-11-20 03:43:06 +0000 | https://twitter.com/dogratingrating/status/667548695664070656/photo/1,https://twitter.com/dogratingrating/status/667548695664070656/photo/1 | 12 | 10 | None | None | None | None | None |
| 2260 | 667550882905632768 | NaN | NaN | 2015-11-20 03:51:47 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | RT @dogratingrating: Unoriginal idea. Blatant plagiarism. Curious grammar. -5/10 https://t.co/r7XzeQZWzb | 6.675484e+17 | 4.296832e+09 | 2015-11-20 03:41:59 +0000 | https://twitter.com/dogratingrating/status/667548415174144001/photo/1,https://twitter.com/dogratingrating/status/667548415174144001/photo/1 | 5 | 10 | None | None | None | None | None |
| 2261 | 667549055577362432 | NaN | NaN | 2015-11-20 03:44:31 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667549055577362432/photo/1 | 1 | 10 | None | None | None | None | None |
| 2262 | 667546741521195010 | NaN | NaN | 2015-11-20 03:35:20 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667546741521195010/photo/1 | 9 | 10 | George | None | None | None | None |
| 2263 | 667544320556335104 | NaN | NaN | 2015-11-20 03:25:43 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667544320556335104/photo/1 | 10 | 10 | Kial | None | None | None | None |
| 2264 | 667538891197542400 | NaN | NaN | 2015-11-20 03:04:08 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667538891197542400/photo/1 | 9 | 10 | a | None | None | None | None |
| 2265 | 667534815156183040 | NaN | NaN | 2015-11-20 02:47:56 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667534815156183040/photo/1 | 8 | 10 | Frank | None | None | None | None |
| 2266 | 667530908589760512 | NaN | NaN | 2015-11-20 02:32:25 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667530908589760512/photo/1 | 10 | 10 | Naphaniel | None | None | None | None |
| 2267 | 667524857454854144 | NaN | NaN | 2015-11-20 02:08:22 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667524857454854144/photo/1 | 12 | 10 | None | None | None | None | None |
| 2268 | 667517642048163840 | NaN | NaN | 2015-11-20 01:39:42 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667517642048163840/photo/1 | 8 | 10 | Dook | None | None | None | None |
| 2269 | 667509364010450944 | NaN | NaN | 2015-11-20 01:06:48 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667509364010450944/photo/1 | 12 | 10 | None | None | None | None | None |
| 2270 | 667502640335572993 | NaN | NaN | 2015-11-20 00:40:05 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667502640335572993/photo/1 | 11 | 10 | Hall | None | None | None | None |
| 2271 | 667495797102141441 | NaN | NaN | 2015-11-20 00:12:54 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667495797102141441/photo/1 | 9 | 10 | Philippe | None | None | None | None |
| 2272 | 667491009379606528 | NaN | NaN | 2015-11-19 23:53:52 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667491009379606528/photo/1 | 7 | 10 | None | None | None | None | None |
| 2273 | 667470559035432960 | NaN | NaN | 2015-11-19 22:32:36 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667470559035432960/photo/1 | 11 | 10 | a | None | None | None | None |
| 2274 | 667455448082227200 | NaN | NaN | 2015-11-19 21:32:34 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667455448082227200/photo/1 | 7 | 10 | Reese | None | None | None | None |
| 2275 | 667453023279554560 | NaN | NaN | 2015-11-19 21:22:56 +0000 | <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667453023279554560/photo/1 | 11 | 10 | Cupcake | None | None | None | None |
| 2276 | 667443425659232256 | NaN | NaN | 2015-11-19 20:44:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667443425659232256/photo/1 | 6 | 10 | None | None | None | None | None |
| 2277 | 667437278097252352 | NaN | NaN | 2015-11-19 20:20:22 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667437278097252352/photo/1 | 10 | 10 | None | None | None | None | None |
| 2278 | 667435689202614272 | NaN | NaN | 2015-11-19 20:14:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Ermergerd 12/10 https://t.co/PQni2sjPsm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667435689202614272/photo/1 | 12 | 10 | None | None | None | None | None |
| 2279 | 667405339315146752 | NaN | NaN | 2015-11-19 18:13:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667405339315146752/photo/1 | 7 | 10 | Biden | None | None | None | None |
| 2280 | 667393430834667520 | NaN | NaN | 2015-11-19 17:26:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667393430834667520/photo/1 | 8 | 10 | Fwed | None | None | None | None |
| 2281 | 667369227918143488 | NaN | NaN | 2015-11-19 15:49:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667369227918143488/photo/1 | 10 | 10 | None | None | None | None | None |
| 2282 | 667211855547486208 | NaN | NaN | 2015-11-19 05:24:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667211855547486208/photo/1 | 9 | 10 | Genevieve | None | None | None | None |
| 2283 | 667200525029539841 | NaN | NaN | 2015-11-19 04:39:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667200525029539841/photo/1 | 11 | 10 | Joshwa | None | None | None | None |
| 2284 | 667192066997374976 | NaN | NaN | 2015-11-19 04:05:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667192066997374976/photo/1 | 12 | 10 | None | None | None | None | None |
| 2285 | 667188689915760640 | NaN | NaN | 2015-11-19 03:52:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667188689915760640/photo/1 | 10 | 10 | None | None | None | None | None |
| 2286 | 667182792070062081 | NaN | NaN | 2015-11-19 03:29:07 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667182792070062081/photo/1 | 10 | 10 | Timison | None | None | None | None |
| 2287 | 667177989038297088 | NaN | NaN | 2015-11-19 03:10:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667177989038297088/photo/1 | 8 | 10 | a | None | None | None | None |
| 2288 | 667176164155375616 | NaN | NaN | 2015-11-19 03:02:47 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667176164155375616/photo/1 | 4 | 10 | None | None | None | None | None |
| 2289 | 667174963120574464 | NaN | NaN | 2015-11-19 02:58:01 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667174963120574464/photo/1 | 9 | 10 | Clarence | None | None | None | None |
| 2290 | 667171260800061440 | NaN | NaN | 2015-11-19 02:43:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667171260800061440/photo/1 | 10 | 10 | Kenneth | None | None | None | None |
| 2291 | 667165590075940865 | NaN | NaN | 2015-11-19 02:20:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667165590075940865/photo/1 | 10 | 10 | Churlie | None | None | None | None |
| 2292 | 667160273090932737 | NaN | NaN | 2015-11-19 01:59:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667160273090932737/photo/1 | 11 | 10 | Bradlay | None | None | None | None |
| 2293 | 667152164079423490 | NaN | NaN | 2015-11-19 01:27:25 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667152164079423490/photo/1 | 12 | 10 | Pipsy | None | None | None | None |
| 2294 | 667138269671505920 | NaN | NaN | 2015-11-19 00:32:12 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667138269671505920/photo/1 | 10 | 10 | None | None | None | None | None |
| 2295 | 667119796878725120 | NaN | NaN | 2015-11-18 23:18:48 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667119796878725120/photo/1 | 10 | 10 | Gabe | None | None | None | None |
| 2296 | 667090893657276420 | NaN | NaN | 2015-11-18 21:23:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667090893657276420/photo/1 | 7 | 10 | Clybe | None | None | None | None |
| 2297 | 667073648344346624 | NaN | NaN | 2015-11-18 20:15:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667073648344346624/photo/1 | 10 | 10 | Dave | None | None | None | None |
| 2298 | 667070482143944705 | 6.670655e+17 | 4.196984e+09 | 2015-11-18 20:02:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | After much debate this dog is being upgraded to 10/10. I repeat 10/10 | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 2299 | 667065535570550784 | NaN | NaN | 2015-11-18 19:43:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667065535570550784/photo/1 | 8 | 10 | None | None | None | None | None |
| 2300 | 667062181243039745 | NaN | NaN | 2015-11-18 19:29:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667062181243039745/photo/1 | 10 | 10 | Keet | None | None | None | None |
| 2301 | 667044094246576128 | NaN | NaN | 2015-11-18 18:17:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 gimme now https://t.co/QZAnwgnOMB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667044094246576128/photo/1 | 12 | 10 | None | None | None | None | None |
| 2302 | 667012601033924608 | NaN | NaN | 2015-11-18 16:12:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667012601033924608/photo/1 | 9 | 10 | Klevin | None | None | None | None |
| 2303 | 666996132027977728 | NaN | NaN | 2015-11-18 15:07:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666996132027977728/photo/1 | 10 | 10 | Carll | None | None | None | None |
| 2304 | 666983947667116034 | NaN | NaN | 2015-11-18 14:18:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666983947667116034/photo/1 | 11 | 10 | a | None | None | None | None |
| 2305 | 666837028449972224 | NaN | NaN | 2015-11-18 04:35:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666837028449972224/photo/1 | 3 | 10 | None | None | None | None | None |
| 2306 | 666835007768551424 | NaN | NaN | 2015-11-18 04:27:09 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666835007768551424/photo/1 | 10 | 10 | None | None | None | None | None |
| 2307 | 666826780179869698 | NaN | NaN | 2015-11-18 03:54:28 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12/10 simply brilliant pup https://t.co/V6ZzG45zzG | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666826780179869698/photo/1 | 12 | 10 | None | None | None | None | None |
| 2308 | 666817836334096384 | NaN | NaN | 2015-11-18 03:18:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666817836334096384/photo/1 | 9 | 10 | Jeph | None | None | None | None |
| 2309 | 666804364988780544 | NaN | NaN | 2015-11-18 02:25:23 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666804364988780544/photo/1 | 8 | 10 | Jockson | None | None | None | None |
| 2310 | 666786068205871104 | NaN | NaN | 2015-11-18 01:12:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666786068205871104/photo/1 | 2 | 10 | None | None | None | None | None |
| 2311 | 666781792255496192 | NaN | NaN | 2015-11-18 00:55:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666781792255496192/photo/1 | 10 | 10 | a | None | None | None | None |
| 2312 | 666776908487630848 | NaN | NaN | 2015-11-18 00:36:17 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666776908487630848/photo/1 | 5 | 10 | Josep | None | None | None | None |
| 2313 | 666739327293083650 | NaN | NaN | 2015-11-17 22:06:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666739327293083650/photo/1 | 10 | 10 | Lugan | None | None | None | None |
| 2314 | 666701168228331520 | NaN | NaN | 2015-11-17 19:35:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666701168228331520/photo/1 | 8 | 10 | a | None | None | None | None |
| 2315 | 666691418707132416 | NaN | NaN | 2015-11-17 18:56:35 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666691418707132416/photo/1 | 8 | 10 | Christoper | None | None | None | None |
| 2316 | 666649482315059201 | NaN | NaN | 2015-11-17 16:09:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666649482315059201/photo/1 | 4 | 10 | None | None | None | None | None |
| 2317 | 666644823164719104 | NaN | NaN | 2015-11-17 15:51:26 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666644823164719104/photo/1 | 9 | 10 | Jimothy | None | None | None | None |
| 2318 | 666454714377183233 | NaN | NaN | 2015-11-17 03:16:00 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666454714377183233/photo/1 | 10 | 10 | Kreggory | None | None | None | None |
| 2319 | 666447344410484738 | NaN | NaN | 2015-11-17 02:46:43 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666447344410484738/photo/1 | 9 | 10 | Scout | None | None | None | None |
| 2320 | 666437273139982337 | NaN | NaN | 2015-11-17 02:06:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666437273139982337/photo/1 | 7 | 10 | None | None | None | None | None |
| 2321 | 666435652385423360 | NaN | NaN | 2015-11-17 02:00:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666435652385423360/photo/1 | 10 | 10 | None | None | None | None | None |
| 2322 | 666430724426358785 | NaN | NaN | 2015-11-17 01:40:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666430724426358785/photo/1 | 6 | 10 | None | None | None | None | None |
| 2323 | 666428276349472768 | NaN | NaN | 2015-11-17 01:30:57 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666428276349472768/photo/1 | 7 | 10 | None | None | None | None | None |
| 2324 | 666421158376562688 | NaN | NaN | 2015-11-17 01:02:40 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | *internally screaming* 12/10 https://t.co/YMcrXC2Y6R | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666421158376562688/photo/1 | 12 | 10 | None | None | None | None | None |
| 2325 | 666418789513326592 | NaN | NaN | 2015-11-17 00:53:15 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666418789513326592/photo/1 | 10 | 10 | Walter | None | None | None | None |
| 2326 | 666411507551481857 | NaN | NaN | 2015-11-17 00:24:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666411507551481857/photo/1 | 2 | 10 | quite | None | None | None | None |
| 2327 | 666407126856765440 | NaN | NaN | 2015-11-17 00:06:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666407126856765440/photo/1 | 7 | 10 | a | None | None | None | None |
| 2328 | 666396247373291520 | NaN | NaN | 2015-11-16 23:23:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666396247373291520/photo/1 | 9 | 10 | None | None | None | None | None |
| 2329 | 666373753744588802 | NaN | NaN | 2015-11-16 21:54:18 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666373753744588802/photo/1 | 11 | 10 | None | None | None | None | None |
| 2330 | 666362758909284353 | NaN | NaN | 2015-11-16 21:10:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666362758909284353/photo/1 | 6 | 10 | None | None | None | None | None |
| 2331 | 666353288456101888 | NaN | NaN | 2015-11-16 20:32:58 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666353288456101888/photo/1 | 8 | 10 | None | None | None | None | None |
| 2332 | 666345417576210432 | NaN | NaN | 2015-11-16 20:01:42 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666345417576210432/photo/1 | 10 | 10 | None | None | None | None | None |
| 2333 | 666337882303524864 | NaN | NaN | 2015-11-16 19:31:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666337882303524864/photo/1 | 9 | 10 | an | None | None | None | None |
| 2334 | 666293911632134144 | NaN | NaN | 2015-11-16 16:37:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666293911632134144/photo/1 | 3 | 10 | a | None | None | None | None |
| 2335 | 666287406224695296 | NaN | NaN | 2015-11-16 16:11:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666287406224695296/photo/1 | 1 | 2 | an | None | None | None | None |
| 2336 | 666273097616637952 | NaN | NaN | 2015-11-16 15:14:19 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Can take selfies 11/10 https://t.co/ws2AMaNwPW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666273097616637952/photo/1 | 11 | 10 | None | None | None | None | None |
| 2337 | 666268910803644416 | NaN | NaN | 2015-11-16 14:57:41 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666268910803644416/photo/1 | 10 | 10 | None | None | None | None | None |
| 2338 | 666104133288665088 | NaN | NaN | 2015-11-16 04:02:55 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666104133288665088/photo/1 | 1 | 10 | None | None | None | None | None |
| 2339 | 666102155909144576 | NaN | NaN | 2015-11-16 03:55:04 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666102155909144576/photo/1 | 11 | 10 | None | None | None | None | None |
| 2340 | 666099513787052032 | NaN | NaN | 2015-11-16 03:44:34 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666099513787052032/photo/1 | 8 | 10 | None | None | None | None | None |
| 2341 | 666094000022159362 | NaN | NaN | 2015-11-16 03:22:39 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666094000022159362/photo/1 | 9 | 10 | None | None | None | None | None |
| 2342 | 666082916733198337 | NaN | NaN | 2015-11-16 02:38:37 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666082916733198337/photo/1 | 6 | 10 | None | None | None | None | None |
| 2343 | 666073100786774016 | NaN | NaN | 2015-11-16 01:59:36 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666073100786774016/photo/1 | 10 | 10 | None | None | None | None | None |
| 2344 | 666071193221509120 | NaN | NaN | 2015-11-16 01:52:02 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666071193221509120/photo/1 | 9 | 10 | None | None | None | None | None |
| 2345 | 666063827256086533 | NaN | NaN | 2015-11-16 01:22:45 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666063827256086533/photo/1 | 10 | 10 | the | None | None | None | None |
| 2346 | 666058600524156928 | NaN | NaN | 2015-11-16 01:01:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666058600524156928/photo/1 | 8 | 10 | the | None | None | None | None |
| 2347 | 666057090499244032 | NaN | NaN | 2015-11-16 00:55:59 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666057090499244032/photo/1 | 9 | 10 | a | None | None | None | None |
| 2348 | 666055525042405380 | NaN | NaN | 2015-11-16 00:49:46 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666055525042405380/photo/1 | 10 | 10 | a | None | None | None | None |
| 2349 | 666051853826850816 | NaN | NaN | 2015-11-16 00:35:11 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666051853826850816/photo/1 | 2 | 10 | an | None | None | None | None |
| 2350 | 666050758794694657 | NaN | NaN | 2015-11-16 00:30:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666050758794694657/photo/1 | 10 | 10 | a | None | None | None | None |
| 2351 | 666049248165822465 | NaN | NaN | 2015-11-16 00:24:50 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666049248165822465/photo/1 | 5 | 10 | None | None | None | None | None |
| 2352 | 666044226329800704 | NaN | NaN | 2015-11-16 00:04:52 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666044226329800704/photo/1 | 6 | 10 | a | None | None | None | None |
| 2353 | 666033412701032449 | NaN | NaN | 2015-11-15 23:21:54 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666033412701032449/photo/1 | 9 | 10 | a | None | None | None | None |
| 2354 | 666029285002620928 | NaN | NaN | 2015-11-15 23:05:30 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666029285002620928/photo/1 | 7 | 10 | a | None | None | None | None |
| 2355 | 666020888022790149 | NaN | NaN | 2015-11-15 22:32:08 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666020888022790149/photo/1 | 8 | 10 | None | None | None | None | None |
predictions
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 1.566650e-01 | True | Shetland_sheepdog | 6.142850e-02 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 7.419170e-02 | True | Rhodesian_ridgeback | 7.201000e-02 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 1.385840e-01 | True | bloodhound | 1.161970e-01 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 3.606870e-01 | True | miniature_pinscher | 2.227520e-01 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 2.436820e-01 | True | Doberman | 1.546290e-01 | True |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | Bernese_mountain_dog | 0.651137 | True | English_springer | 2.637880e-01 | True | Greater_Swiss_Mountain_dog | 1.619920e-02 | True |
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | chow | 0.692517 | True | Tibetan_mastiff | 5.827940e-02 | True | fur_coat | 5.444860e-02 | False |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | shopping_cart | 0.962465 | False | shopping_basket | 1.459380e-02 | False | golden_retriever | 7.958960e-03 | True |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | miniature_poodle | 0.201493 | True | komondor | 1.923050e-01 | True | soft-coated_wheaten_terrier | 8.208610e-02 | True |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | golden_retriever | 0.775930 | True | Tibetan_mastiff | 9.371780e-02 | True | Labrador_retriever | 7.242660e-02 | True |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | Gordon_setter | 0.503672 | True | Yorkshire_terrier | 1.742010e-01 | True | Pekinese | 1.094540e-01 | True |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | Walker_hound | 0.260857 | True | English_foxhound | 1.753820e-01 | True | Ibizan_hound | 9.747050e-02 | True |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | pug | 0.489814 | True | bull_mastiff | 4.047220e-01 | True | French_bulldog | 4.895950e-02 | True |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | bloodhound | 0.195217 | True | German_shepherd | 7.825980e-02 | True | malinois | 7.562780e-02 | True |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | Lhasa | 0.582330 | True | Shih-Tzu | 1.661920e-01 | True | Dandie_Dinmont | 8.968830e-02 | True |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | English_setter | 0.298617 | True | Newfoundland | 1.498420e-01 | True | borzoi | 1.336490e-01 | True |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | Italian_greyhound | 0.176053 | True | toy_terrier | 1.118840e-01 | True | basenji | 1.111520e-01 | True |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | Maltese_dog | 0.857531 | True | toy_poodle | 6.306380e-02 | True | miniature_poodle | 2.558060e-02 | True |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 22 | 666337882303524864 | https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg | 1 | ox | 0.416669 | False | Newfoundland | 2.784070e-01 | True | groenendael | 1.026430e-01 | True |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | golden_retriever | 0.858744 | True | Chesapeake_Bay_retriever | 5.478680e-02 | True | Labrador_retriever | 1.424090e-02 | True |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | malamute | 0.336874 | True | Siberian_husky | 1.476550e-01 | True | Eskimo_dog | 9.341240e-02 | True |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | soft-coated_wheaten_terrier | 0.326467 | True | Afghan_hound | 2.595510e-01 | True | briard | 2.068030e-01 | True |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | Chihuahua | 0.978108 | True | toy_terrier | 9.396970e-03 | True | papillon | 4.576810e-03 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 2.442200e-01 | True | flat-coated_retriever | 1.738100e-01 | True |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | toy_terrier | 0.149680 | True | papillon | 1.482580e-01 | True | Chihuahua | 1.428600e-01 | True |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | Blenheim_spaniel | 0.906777 | True | cocker_spaniel | 9.034640e-02 | True | Shih-Tzu | 1.116870e-03 | True |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | Pembroke | 0.371361 | True | chow | 2.493940e-01 | True | Pomeranian | 2.418780e-01 | True |
| 33 | 666430724426358785 | https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg | 1 | llama | 0.505184 | False | Irish_terrier | 1.041090e-01 | True | dingo | 6.207120e-02 | False |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | Chesapeake_Bay_retriever | 0.184130 | True | chain_saw | 5.677530e-02 | False | power_drill | 3.676340e-02 | False |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | Chihuahua | 0.671853 | True | beagle | 1.246800e-01 | True | Saluki | 4.409420e-02 | True |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | curly-coated_retriever | 0.322084 | True | giant_schnauzer | 2.879550e-01 | True | Labrador_retriever | 1.663310e-01 | True |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | dalmatian | 0.278954 | True | Labrador_retriever | 2.376120e-01 | True | Great_Pyrenees | 1.711060e-01 | True |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | Ibizan_hound | 0.044333 | True | Pembroke | 4.320930e-02 | True | West_Highland_white_terrier | 3.890560e-02 | True |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | Border_collie | 0.447803 | True | English_springer | 1.704970e-01 | True | collie | 1.392060e-01 | True |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | German_shepherd | 0.975401 | True | beagle | 8.687270e-03 | True | bloodhound | 5.394040e-03 | True |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | Labrador_retriever | 0.887707 | True | Chihuahua | 2.930700e-02 | True | French_bulldog | 2.075630e-02 | True |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | miniature_poodle | 0.546933 | True | cocker_spaniel | 1.652550e-01 | True | toy_poodle | 9.595890e-02 | True |
| 43 | 666776908487630848 | https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg | 1 | seat_belt | 0.375057 | False | miniature_pinscher | 1.671750e-01 | True | Chihuahua | 8.695060e-02 | True |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | Italian_greyhound | 0.618316 | True | Weimaraner | 1.513630e-01 | True | vizsla | 8.598910e-02 | True |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | English_setter | 0.328792 | True | Brittany_spaniel | 2.835450e-01 | True | Ibizan_hound | 5.746150e-02 | True |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | miniature_schnauzer | 0.496953 | True | standard_schnauzer | 2.852760e-01 | True | giant_schnauzer | 7.376370e-02 | True |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | Maltese_dog | 0.359383 | True | teddy | 1.487590e-01 | False | West_Highland_white_terrier | 1.060070e-01 | True |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | Airedale | 0.448459 | True | toy_poodle | 1.240300e-01 | True | teddy | 1.101830e-01 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 52 | 666996132027977728 | https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg | 1 | hay | 0.507637 | False | Rottweiler | 6.248990e-02 | True | water_buffalo | 4.842470e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | golden_retriever | 0.765266 | True | Labrador_retriever | 2.066940e-01 | True | seat_belt | 1.066690e-02 | False |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | Chesapeake_Bay_retriever | 0.825678 | True | vizsla | 9.099800e-02 | True | kelpie | 2.295620e-02 | True |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | Chihuahua | 0.483682 | True | pug | 9.249390e-02 | True | Brabancon_griffon | 5.749540e-02 | True |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | Chihuahua | 0.959514 | True | Italian_greyhound | 5.370150e-03 | True | Pomeranian | 2.641330e-03 | True |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | Pembroke | 0.741563 | True | Chihuahua | 5.786590e-02 | True | toy_poodle | 3.912510e-02 | True |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | West_Highland_white_terrier | 0.747713 | True | Samoyed | 2.436290e-01 | True | toy_poodle | 1.803970e-03 | True |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | toy_poodle | 0.535411 | True | Pomeranian | 8.754400e-02 | True | miniature_poodle | 6.205000e-02 | True |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | golden_retriever | 0.471351 | True | miniature_poodle | 9.199210e-02 | True | standard_poodle | 8.738540e-02 | True |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | miniature_pinscher | 0.140173 | True | Rottweiler | 1.340940e-01 | True | beagle | 8.189980e-02 | True |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | giant_schnauzer | 0.841265 | True | Lakeland_terrier | 5.274420e-02 | True | Irish_water_spaniel | 3.440170e-02 | True |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | toy_poodle | 0.266437 | True | Chihuahua | 2.432230e-01 | True | bluetick | 7.280630e-02 | True |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | soft-coated_wheaten_terrier | 0.318981 | True | Lakeland_terrier | 2.152180e-01 | True | toy_poodle | 1.060140e-01 | True |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | vizsla | 0.259249 | True | Chesapeake_Bay_retriever | 1.762930e-01 | True | Weimaraner | 1.123690e-01 | True |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | golden_retriever | 0.949892 | True | Irish_setter | 1.056380e-02 | True | Chesapeake_Bay_retriever | 5.821410e-03 | True |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | Rottweiler | 0.283640 | True | miniature_pinscher | 1.481120e-01 | True | black-and-tan_coonhound | 9.558480e-02 | True |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | Siberian_husky | 0.694904 | True | malamute | 2.320060e-01 | True | Eskimo_dog | 5.063510e-02 | True |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | golden_retriever | 0.462556 | True | Labrador_retriever | 4.549370e-01 | True | kuvasz | 2.419330e-02 | True |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | papillon | 0.557009 | True | Border_collie | 2.719630e-01 | True | collie | 7.347290e-02 | True |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | Saint_Bernard | 0.381377 | True | Leonberg | 1.279980e-01 | True | golden_retriever | 6.935680e-02 | True |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | Rottweiler | 0.999091 | True | miniature_pinscher | 4.503550e-04 | True | black-and-tan_coonhound | 1.571400e-04 | True |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | Labrador_retriever | 0.825670 | True | French_bulldog | 5.663940e-02 | True | Staffordshire_bullterrier | 5.401840e-02 | True |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | Tibetan_terrier | 0.676376 | True | Irish_terrier | 5.493340e-02 | True | Yorkshire_terrier | 4.057550e-02 | True |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | toy_poodle | 0.304175 | True | pug | 2.234270e-01 | True | Lakeland_terrier | 7.331650e-02 | True |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | borzoi | 0.852088 | True | ice_bear | 1.322640e-01 | False | weasel | 5.729980e-03 | False |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | Chihuahua | 0.143957 | True | Christmas_stocking | 1.186510e-01 | False | ski_mask | 9.248170e-02 | False |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | Labrador_retriever | 0.996709 | True | golden_retriever | 1.688210e-03 | True | beagle | 7.116670e-04 | True |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | Italian_greyhound | 0.125176 | True | standard_poodle | 8.457150e-02 | True | cocker_spaniel | 8.134690e-02 | True |
| 87 | 667524857454854144 | https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg | 1 | hare | 0.447893 | False | dhole | 9.243530e-02 | False | Chesapeake_Bay_retriever | 8.812240e-02 | True |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | golden_retriever | 0.633037 | True | kuvasz | 1.463910e-01 | True | Labrador_retriever | 4.618370e-02 | True |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | Pembroke | 0.435254 | True | Cardigan | 3.074070e-01 | True | cocker_spaniel | 3.315830e-02 | True |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | Yorkshire_terrier | 0.618957 | True | silky_terrier | 3.003130e-01 | True | Australian_terrier | 5.341200e-02 | True |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | Pomeranian | 0.412893 | True | Pembroke | 3.129580e-01 | True | Chihuahua | 7.196040e-02 | True |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | toy_poodle | 0.787424 | True | miniature_poodle | 2.022250e-01 | True | teddy | 4.047220e-03 | False |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 95 | 667550904950915073 | https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg | 1 | web_site | 0.999335 | False | vizsla | 8.106320e-05 | True | collie | 6.915900e-05 | True |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | kuvasz | 0.360159 | True | golden_retriever | 2.937440e-01 | True | Labrador_retriever | 2.706730e-01 | True |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | West_Highland_white_terrier | 0.360465 | True | pug | 9.349410e-02 | True | ice_bear | 6.903820e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | dalmatian | 0.535073 | True | English_setter | 4.512190e-01 | True | Great_Dane | 8.163610e-03 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 2.622390e-01 | True | curly-coated_retriever | 4.891980e-02 | True |
| 103 | 667806454573760512 | https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg | 1 | toyshop | 0.253089 | False | Chihuahua | 1.871550e-01 | True | Brabancon_griffon | 1.127990e-01 | True |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | miniature_pinscher | 0.214200 | True | bath_towel | 1.467890e-01 | False | Chihuahua | 1.041520e-01 | True |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | malamute | 0.967275 | True | Siberian_husky | 1.616750e-02 | True | Eskimo_dog | 1.127740e-02 | True |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 108 | 667878741721415682 | https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg | 1 | seat_belt | 0.200373 | False | miniature_pinscher | 1.060030e-01 | True | schipperke | 1.047330e-01 | True |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | malamute | 0.088530 | True | golden_retriever | 8.749860e-02 | True | muzzle | 7.500770e-02 | False |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | Pomeranian | 0.800432 | True | Pekinese | 1.684450e-01 | True | Chihuahua | 8.949520e-03 | True |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | Norwegian_elkhound | 0.298881 | True | malamute | 2.794790e-01 | True | Eskimo_dog | 1.984280e-01 | True |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 113 | 667915453470232577 | https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg | 1 | leatherback_turtle | 0.452517 | False | boxer | 1.966550e-01 | True | terrapin | 1.609830e-01 | False |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | Labrador_retriever | 0.209051 | True | hog | 2.039800e-01 | False | Newfoundland | 1.659140e-01 | True |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | Pembroke | 0.548896 | True | Cardigan | 1.911010e-01 | True | collie | 5.981410e-02 | True |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | Chihuahua | 0.664834 | True | cowboy_boot | 6.034300e-02 | False | giant_panda | 5.983750e-02 | False |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | Blenheim_spaniel | 0.958402 | True | cocker_spaniel | 2.676430e-02 | True | Welsh_springer_spaniel | 7.789910e-03 | True |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | Labrador_retriever | 0.655180 | True | golden_retriever | 1.078840e-01 | True | Chesapeake_Bay_retriever | 6.583470e-02 | True |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | chow | 0.395101 | True | golden_retriever | 3.721150e-01 | True | Labrador_retriever | 1.487850e-01 | True |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | chow | 0.809320 | True | minivan | 7.131070e-02 | False | Pekinese | 3.786960e-02 | True |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | Chihuahua | 0.734547 | True | miniature_pinscher | 6.829440e-02 | True | toy_terrier | 4.636710e-02 | True |
| 126 | 668256321989451776 | https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg | 1 | canoe | 0.407683 | False | paddle | 1.155500e-01 | False | Pembroke | 9.442940e-02 | True |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | Pembroke | 0.484830 | True | Cardigan | 4.253030e-01 | True | basenji | 1.475350e-02 | True |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | soft-coated_wheaten_terrier | 0.406374 | True | Lakeland_terrier | 2.638540e-01 | True | toy_poodle | 1.508440e-01 | True |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | golden_retriever | 0.215944 | True | basset | 1.892140e-01 | True | Cardigan | 1.130100e-01 | True |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 131 | 668297328638447616 | https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg | 1 | king_penguin | 0.606747 | False | ice_bear | 2.642210e-01 | False | Eskimo_dog | 3.278380e-02 | True |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 133 | 668480044826800133 | https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg | 1 | Arctic_fox | 0.119243 | False | Labrador_retriever | 9.996480e-02 | True | pug | 8.671650e-02 | True |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | standard_poodle | 0.587372 | True | Bedlington_terrier | 1.824110e-01 | True | Afghan_hound | 4.096800e-02 | True |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | Staffordshire_bullterrier | 0.412879 | True | miniature_pinscher | 1.614880e-01 | True | American_Staffordshire_terrier | 1.124950e-01 | True |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | basenji | 0.055379 | True | Shetland_sheepdog | 5.432210e-02 | True | whippet | 5.191340e-02 | True |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | Labrador_retriever | 0.195835 | True | kuvasz | 1.216070e-01 | True | English_setter | 8.146440e-02 | True |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | Lakeland_terrier | 0.372988 | True | toy_poodle | 2.504450e-01 | True | Chihuahua | 1.897370e-01 | True |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | American_Staffordshire_terrier | 0.267695 | True | French_bulldog | 2.540500e-01 | True | Staffordshire_bullterrier | 2.123810e-01 | True |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | Shih-Tzu | 0.985649 | True | Lhasa | 7.078320e-03 | True | Pekinese | 3.053230e-03 | True |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | Chihuahua | 0.708163 | True | Pomeranian | 9.137190e-02 | True | titi | 6.732550e-02 | False |
| 145 | 668625577880875008 | https://pbs.twimg.com/media/CUdvambWoAA007z.jpg | 1 | ox | 0.071536 | False | groenendael | 5.445480e-02 | True | Angora | 4.502800e-02 | False |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | French_bulldog | 0.965403 | True | pug | 8.603810e-03 | True | Boston_bull | 8.003560e-03 | True |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | miniature_schnauzer | 0.904549 | True | Australian_terrier | 2.252940e-02 | True | silky_terrier | 1.524320e-02 | True |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | Pekinese | 0.589011 | True | Shih-Tzu | 3.909870e-01 | True | Japanese_spaniel | 3.310350e-03 | True |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | komondor | 0.999956 | True | llama | 4.309810e-05 | False | ram | 2.160900e-07 | False |
| 150 | 668641109086707712 | https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg | 1 | vacuum | 0.432594 | False | pug | 1.463110e-01 | True | toilet_tissue | 2.450030e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | beagle | 0.319110 | True | Italian_greyhound | 1.033380e-01 | True | basenji | 9.193000e-02 | True |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | Chesapeake_Bay_retriever | 0.285508 | True | Weimaraner | 1.468320e-01 | True | black-footed_ferret | 6.086480e-02 | False |
| 155 | 668815180734689280 | https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg | 1 | redbone | 0.461172 | True | Italian_greyhound | 2.707330e-01 | True | miniature_pinscher | 1.097520e-01 | True |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | malinois | 0.640185 | True | Irish_terrier | 1.537000e-01 | True | Rhodesian_ridgeback | 6.845650e-02 | True |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | golden_retriever | 0.903529 | True | Tibetan_mastiff | 4.149700e-02 | True | kuvasz | 2.250050e-02 | True |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | teddy | 0.413379 | False | pillow | 3.256230e-01 | False | miniature_schnauzer | 3.553660e-02 | True |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | kelpie | 0.421979 | True | collie | 2.270600e-01 | True | Cardigan | 1.682110e-01 | True |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | Brittany_spaniel | 0.828425 | True | Ibizan_hound | 4.308200e-02 | True | Blenheim_spaniel | 2.800360e-02 | True |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | standard_poodle | 0.237638 | True | Old_English_sheepdog | 1.955730e-01 | True | toy_poodle | 1.446580e-01 | True |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | cocker_spaniel | 0.367492 | True | Lakeland_terrier | 2.726210e-01 | True | soft-coated_wheaten_terrier | 6.700630e-02 | True |
| 163 | 668960084974809088 | https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg | 1 | shower_curtain | 0.226309 | False | Chesapeake_Bay_retriever | 1.658780e-01 | True | bathtub | 5.672610e-02 | False |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | basset | 0.605437 | True | Welsh_springer_spaniel | 1.847830e-01 | True | Saint_Bernard | 1.162990e-01 | True |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | golden_retriever | 0.608537 | True | Irish_setter | 9.707800e-02 | True | redbone | 7.602220e-02 | True |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 167 | 668986018524233728 | https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg | 1 | doormat | 0.976103 | False | Chihuahua | 5.639720e-03 | True | Norfolk_terrier | 3.912650e-03 | True |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | pug | 0.917326 | True | waffle_iron | 1.491750e-02 | False | Chihuahua | 1.352440e-02 | True |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 171 | 668994913074286592 | https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg | 1 | hog | 0.113789 | False | English_springer | 8.976330e-02 | True | French_bulldog | 8.218640e-02 | True |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | Pembroke | 0.822940 | True | Cardigan | 1.770350e-01 | True | basenji | 2.335260e-05 | True |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | Chihuahua | 0.127178 | True | Italian_greyhound | 5.421470e-02 | True | pillow | 4.859160e-02 | False |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | Chihuahua | 0.803528 | True | Pomeranian | 5.387110e-02 | True | chow | 3.225740e-02 | True |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | pug | 0.910452 | True | French_bulldog | 5.508960e-02 | True | Chihuahua | 1.489660e-02 | True |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | golden_retriever | 0.992758 | True | Irish_setter | 3.379040e-03 | True | Saluki | 1.229630e-03 | True |
| 179 | 669324657376567296 | https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg | 1 | seashore | 0.201659 | False | Cardigan | 1.315440e-01 | True | sandbar | 1.014300e-01 | False |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | golden_retriever | 0.919584 | True | Labrador_retriever | 4.966950e-02 | True | kuvasz | 1.021610e-02 | True |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | Siberian_husky | 0.424202 | True | Eskimo_dog | 2.376600e-01 | True | malamute | 5.257170e-02 | True |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | teddy | 0.379656 | False | Pembroke | 2.123430e-01 | True | chow | 9.699530e-02 | True |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | Chihuahua | 0.973990 | True | French_bulldog | 1.083200e-02 | True | Pekinese | 2.098650e-03 | True |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | Labrador_retriever | 0.367818 | True | German_short-haired_pointer | 2.806420e-01 | True | Chesapeake_Bay_retriever | 1.842460e-01 | True |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | golden_retriever | 0.539004 | True | Irish_setter | 4.065500e-01 | True | cocker_spaniel | 4.148440e-02 | True |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | basset | 0.749394 | True | beagle | 1.335790e-01 | True | Welsh_springer_spaniel | 3.019840e-02 | True |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | Brabancon_griffon | 0.483268 | True | miniature_pinscher | 3.074650e-01 | True | redbone | 7.052380e-02 | True |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | Airedale | 0.168762 | True | Norfolk_terrier | 1.074790e-01 | True | Lakeland_terrier | 9.784590e-02 | True |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | cocker_spaniel | 0.359843 | True | Blenheim_spaniel | 1.395190e-01 | True | toy_poodle | 1.327460e-01 | True |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | toy_poodle | 0.623685 | True | miniature_poodle | 2.599200e-01 | True | standard_poodle | 8.252970e-02 | True |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | Chihuahua | 0.980511 | True | toy_terrier | 9.166440e-03 | True | miniature_pinscher | 2.658510e-03 | True |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | West_Highland_white_terrier | 0.946828 | True | miniature_schnauzer | 2.234360e-02 | True | cairn | 9.461660e-03 | True |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | Eskimo_dog | 0.595665 | True | Siberian_husky | 2.144740e-01 | True | white_wolf | 1.472350e-01 | False |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | Maltese_dog | 0.659619 | True | Tibetan_terrier | 1.935390e-01 | True | Shih-Tzu | 3.932710e-02 | True |
| 198 | 669625907762618368 | https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg | 1 | seat_belt | 0.874502 | False | golden_retriever | 5.540810e-02 | True | Labrador_retriever | 2.685430e-02 | True |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | dalmatian | 0.141257 | True | borzoi | 1.377440e-01 | True | Labrador_retriever | 1.037920e-01 | True |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | Pomeranian | 0.998275 | True | Chihuahua | 6.054760e-04 | True | Pekinese | 5.156880e-04 | True |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | Pembroke | 0.858494 | True | hamster | 2.631880e-02 | False | Shetland_sheepdog | 2.240520e-02 | True |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | Pomeranian | 0.984231 | True | keeshond | 1.023110e-02 | True | papillon | 2.218970e-03 | True |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | vizsla | 0.743216 | True | redbone | 2.172820e-01 | True | Rhodesian_ridgeback | 2.847350e-02 | True |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | miniature_pinscher | 0.734744 | True | Rottweiler | 1.310660e-01 | True | Doberman | 8.150940e-02 | True |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 210 | 669993076832759809 | https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg | 1 | piggy_bank | 0.176320 | False | hair_spray | 9.748700e-02 | False | toy_poodle | 8.650160e-02 | True |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | beagle | 0.375313 | True | Saint_Bernard | 1.749110e-01 | True | English_foxhound | 1.158880e-01 | True |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 213 | 670040295598354432 | https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg | 1 | web_site | 0.901552 | False | borzoi | 2.665960e-02 | True | Chihuahua | 1.243760e-02 | True |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | Blenheim_spaniel | 0.998335 | True | beagle | 6.472890e-04 | True | Brittany_spaniel | 3.918660e-04 | True |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | Italian_greyhound | 0.329339 | True | American_Staffordshire_terrier | 3.052940e-01 | True | whippet | 1.116860e-01 | True |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | malamute | 0.601886 | True | Siberian_husky | 3.401060e-01 | True | Eskimo_dog | 5.004130e-02 | True |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | German_short-haired_pointer | 0.273492 | True | Staffordshire_bullterrier | 1.329440e-01 | True | bluetick | 1.245620e-01 | True |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | toy_poodle | 0.383346 | True | miniature_poodle | 1.536780e-01 | True | chow | 1.385430e-01 | True |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | Chihuahua | 0.368876 | True | Pomeranian | 2.821020e-01 | True | papillon | 1.787950e-01 | True |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | Shetland_sheepdog | 0.380278 | True | Cardigan | 3.428060e-01 | True | guinea_pig | 1.562490e-01 | False |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | cairn | 0.245033 | True | West_Highland_white_terrier | 1.377090e-01 | True | miniature_schnauzer | 8.917250e-02 | True |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | English_springer | 0.974936 | True | English_setter | 1.166130e-02 | True | cocker_spaniel | 2.688990e-03 | True |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | whippet | 0.178027 | True | Chesapeake_Bay_retriever | 1.059690e-01 | True | beagle | 7.871970e-02 | True |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | pug | 0.802223 | True | French_bulldog | 1.725570e-01 | True | bull_mastiff | 7.162800e-03 | True |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | Maltese_dog | 0.584397 | True | miniature_schnauzer | 6.420080e-02 | True | toy_poodle | 6.086770e-02 | True |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | Chihuahua | 0.275793 | True | corn | 7.359580e-02 | False | bolete | 5.490510e-02 | False |
| 235 | 670427002554466305 | https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg | 1 | seat_belt | 0.952258 | False | toy_terrier | 3.887160e-02 | True | beagle | 3.226440e-03 | True |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | chow | 0.335269 | True | golden_retriever | 3.058500e-01 | True | Tibetan_mastiff | 6.332530e-02 | True |
| 237 | 670433248821026816 | https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg | 1 | window_shade | 0.583427 | False | giant_schnauzer | 6.221480e-02 | True | window_screen | 3.994100e-02 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 2.735100e-02 | True | Labrador_retriever | 2.008090e-02 | True |
| 239 | 670435821946826752 | https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg | 1 | sorrel | 0.460370 | False | basenji | 1.357670e-01 | True | Cardigan | 9.917430e-02 | True |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | Sussex_spaniel | 0.403552 | True | otterhound | 2.563020e-01 | True | Irish_terrier | 1.873150e-01 | True |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 243 | 670452855871037440 | https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg | 1 | Arctic_fox | 0.188174 | False | indri | 1.235840e-01 | False | malamute | 8.037950e-02 | True |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | Dandie_Dinmont | 0.676102 | True | West_Highland_white_terrier | 4.082560e-02 | True | clumber | 3.953330e-02 | True |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | Ibizan_hound | 0.342734 | True | Brittany_spaniel | 2.290650e-01 | True | Chihuahua | 1.040290e-01 | True |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | Shetland_sheepdog | 0.071124 | True | home_theater | 6.839780e-02 | False | American_Staffordshire_terrier | 6.696390e-02 | True |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | Norwich_terrier | 0.419838 | True | cairn | 3.518760e-01 | True | Norfolk_terrier | 5.109370e-02 | True |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | Pomeranian | 0.368161 | True | Pekinese | 3.509730e-01 | True | golden_retriever | 1.149020e-01 | True |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | keeshond | 0.994065 | True | Norwegian_elkhound | 1.827480e-03 | True | cairn | 1.821310e-03 | True |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | Norfolk_terrier | 0.172850 | True | golden_retriever | 7.270220e-02 | True | television | 3.749420e-02 | False |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | pug | 0.776612 | True | Brabancon_griffon | 1.120320e-01 | True | boxer | 3.905140e-02 | True |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | Labrador_retriever | 0.244889 | True | American_black_bear | 5.699350e-02 | False | brown_bear | 5.399260e-02 | False |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | Chihuahua | 0.952963 | True | French_bulldog | 3.657470e-02 | True | Boston_bull | 1.977400e-03 | True |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | dingo | 0.777124 | False | Pembroke | 1.274380e-01 | True | Cardigan | 2.400660e-02 | True |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | beagle | 0.295966 | True | basset | 1.435270e-01 | True | bluetick | 1.389920e-01 | True |
| 263 | 670792680469889025 | https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg | 1 | brown_bear | 0.882426 | False | toy_poodle | 3.135500e-02 | True | miniature_poodle | 2.574340e-02 | True |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | Pembroke | 0.472197 | True | beagle | 9.093800e-02 | True | German_shepherd | 6.436600e-02 | True |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | basenji | 0.344101 | True | Ibizan_hound | 2.102820e-01 | True | toy_terrier | 1.962790e-01 | True |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | Pomeranian | 0.868560 | True | Pekinese | 9.012920e-02 | True | chow | 2.172210e-02 | True |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | Old_English_sheepdog | 0.958035 | True | Sealyham_terrier | 1.389220e-02 | True | Border_collie | 4.601140e-03 | True |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | basset | 0.994090 | True | Walker_hound | 3.972680e-03 | True | beagle | 1.406190e-03 | True |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | American_Staffordshire_terrier | 0.919714 | True | Staffordshire_bullterrier | 7.343020e-02 | True | bull_mastiff | 9.056790e-04 | True |
| 270 | 670822709593571328 | https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg | 1 | web_site | 0.993887 | False | Chihuahua | 1.251520e-03 | True | menu | 5.987510e-04 | False |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | Labrador_retriever | 0.947453 | True | German_short-haired_pointer | 1.700060e-02 | True | Weimaraner | 1.543210e-02 | True |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | malinois | 0.317607 | True | Norwegian_elkhound | 2.749010e-01 | True | bathing_cap | 1.146430e-01 | False |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | Pekinese | 0.609853 | True | Persian_cat | 2.654420e-01 | False | Japanese_spaniel | 2.746040e-02 | True |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | Shih-Tzu | 0.963622 | True | Lhasa | 1.601670e-02 | True | guinea_pig | 7.931920e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 278 | 670995969505435648 | https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg | 1 | redbone | 0.866221 | True | beagle | 6.119400e-02 | True | Rhodesian_ridgeback | 2.428450e-02 | True |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | basenji | 0.855959 | True | beagle | 3.672310e-02 | True | toy_terrier | 2.925780e-02 | True |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | malinois | 0.406341 | True | kelpie | 1.433660e-01 | True | dingo | 1.298020e-01 | False |
| 281 | 671122204919246848 | https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg | 1 | goose | 0.351957 | False | Chihuahua | 1.012280e-01 | True | hen | 6.581760e-02 | False |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | Shih-Tzu | 0.180380 | True | golden_retriever | 1.801940e-01 | True | Labrador_retriever | 1.736560e-01 | True |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | Samoyed | 0.587342 | True | Great_Pyrenees | 2.689520e-01 | True | Pekinese | 9.052750e-02 | True |
| 284 | 671141549288370177 | https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg | 1 | guinea_pig | 0.387728 | False | wood_rabbit | 1.716810e-01 | False | borzoi | 7.535770e-02 | True |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | Yorkshire_terrier | 0.467202 | True | cairn | 4.401220e-01 | True | silky_terrier | 5.869010e-02 | True |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | Rottweiler | 0.781201 | True | black-and-tan_coonhound | 6.120650e-02 | True | kelpie | 4.885570e-02 | True |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | Labrador_retriever | 0.495047 | True | Chesapeake_Bay_retriever | 3.501880e-01 | True | golden_retriever | 1.424000e-01 | True |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | African_hunting_dog | 0.733025 | False | plow | 1.193770e-01 | False | Scottish_deerhound | 2.698290e-02 | True |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | Rottweiler | 0.331179 | True | kelpie | 2.186010e-01 | True | Appenzeller | 1.825200e-01 | True |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | Chihuahua | 0.319106 | True | whippet | 1.691340e-01 | True | toy_terrier | 1.258150e-01 | True |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | miniature_poodle | 0.313811 | True | toy_poodle | 1.655850e-01 | True | Irish_terrier | 5.609410e-02 | True |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | Italian_greyhound | 0.831757 | True | toy_terrier | 4.330580e-02 | True | Chihuahua | 3.677300e-02 | True |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | Samoyed | 0.627901 | True | Great_Pyrenees | 2.764210e-01 | True | kuvasz | 5.787350e-02 | True |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | German_shepherd | 0.827035 | True | kelpie | 8.764770e-02 | True | red_wolf | 3.121790e-02 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | toy_poodle | 0.259115 | True | bath_towel | 1.776690e-01 | False | Maltese_dog | 7.171250e-02 | True |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | Lakeland_terrier | 0.428275 | True | wire-haired_fox_terrier | 1.114720e-01 | True | toy_poodle | 1.050160e-01 | True |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | Pomeranian | 0.551031 | True | Pekinese | 1.352620e-01 | True | gibbon | 6.155740e-02 | False |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | Doberman | 0.782626 | True | black-and-tan_coonhound | 1.096780e-01 | True | Gordon_setter | 5.211020e-02 | True |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | pug | 0.537652 | True | bull_mastiff | 2.206170e-01 | True | French_bulldog | 6.829650e-02 | True |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | Shetland_sheepdog | 0.980339 | True | collie | 6.693000e-03 | True | papillon | 6.157010e-03 | True |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | Gordon_setter | 0.469373 | True | black-and-tan_coonhound | 2.708930e-01 | True | Rottweiler | 1.532330e-01 | True |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | kuvasz | 0.431469 | True | Samoyed | 1.171220e-01 | True | white_wolf | 9.006660e-02 | False |
| 315 | 671735591348891648 | https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg | 2 | stone_wall | 0.271121 | False | Irish_wolfhound | 6.307820e-02 | True | poncho | 4.822590e-02 | False |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | toy_poodle | 0.419427 | True | miniature_poodle | 2.370670e-01 | True | swing | 1.041930e-01 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | Chihuahua | 0.500373 | True | French_bulldog | 1.127960e-01 | True | Italian_greyhound | 6.289270e-02 | True |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-4WIAAmiQ5.png | 1 | dalmatian | 0.114259 | True | teddy | 6.227520e-02 | False | steam_locomotive | 4.970020e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | Labrador_retriever | 0.875614 | True | Chihuahua | 3.218220e-02 | True | golden_retriever | 1.723250e-02 | True |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | Labrador_retriever | 0.567933 | True | golden_retriever | 3.494010e-01 | True | seat_belt | 6.939620e-02 | False |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | pug | 0.863385 | True | shopping_cart | 1.257460e-01 | False | Border_terrier | 2.972460e-03 | True |
| 329 | 672082170312290304 | https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg | 1 | hamster | 0.132440 | False | toy_poodle | 1.239620e-01 | True | bubble | 5.621240e-02 | False |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | pug | 0.794087 | True | French_bulldog | 1.407960e-01 | True | bull_mastiff | 4.468110e-02 | True |
| 331 | 672125275208069120 | https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg | 1 | tennis_ball | 0.999834 | False | golden_retriever | 8.675670e-05 | True | racket | 5.332190e-05 | False |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | Rottweiler | 0.290992 | True | American_black_bear | 2.381200e-01 | False | chimpanzee | 1.155410e-01 | False |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | pug | 0.561027 | True | French_bulldog | 2.221140e-01 | True | Labrador_retriever | 6.545560e-02 | True |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | cocker_spaniel | 0.991011 | True | Sussex_spaniel | 4.032130e-03 | True | miniature_poodle | 1.275640e-03 | True |
| 335 | 672205392827572224 | https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg | 1 | carton | 0.952613 | False | crate | 3.537620e-02 | False | pug | 3.266910e-03 | True |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | beagle | 0.958178 | True | basset | 9.117310e-03 | True | Italian_greyhound | 7.731050e-03 | True |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | pug | 0.332536 | True | French_bulldog | 2.581240e-01 | True | bull_mastiff | 1.208730e-01 | True |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | Chihuahua | 0.718944 | True | badger | 1.785460e-01 | False | toy_terrier | 3.710310e-02 | True |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | Irish_terrier | 0.413173 | True | Airedale | 3.356160e-01 | True | toy_poodle | 2.795230e-02 | True |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | pug | 0.979487 | True | French_bulldog | 1.685040e-02 | True | Norwegian_elkhound | 1.617540e-03 | True |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | Chihuahua | 0.609860 | True | teddy | 6.813370e-02 | False | Norwich_terrier | 5.922730e-02 | True |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | Irish_terrier | 0.716932 | True | miniature_pinscher | 5.123350e-02 | True | Airedale | 4.438090e-02 | True |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | pug | 0.914685 | True | Norwegian_elkhound | 1.498190e-02 | True | Siamese_cat | 9.220550e-03 | False |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | cocker_spaniel | 0.150424 | True | toy_poodle | 8.860530e-02 | True | Welsh_springer_spaniel | 7.201430e-02 | True |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | Border_collie | 0.599454 | True | collie | 1.062270e-01 | True | Shetland_sheepdog | 9.446490e-02 | True |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | West_Highland_white_terrier | 0.586173 | True | borzoi | 2.066200e-01 | True | Great_Pyrenees | 6.065270e-02 | True |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | Doberman | 0.605358 | True | Rottweiler | 1.083820e-01 | True | Appenzeller | 7.779770e-02 | True |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | golden_retriever | 0.565981 | True | chow | 8.121170e-02 | True | Irish_terrier | 6.159600e-02 | True |
| 352 | 672538107540070400 | https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg | 1 | Siamese_cat | 0.383937 | False | Chihuahua | 1.602740e-01 | True | giant_panda | 1.477450e-01 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | kuvasz | 0.777659 | True | Great_Pyrenees | 1.125170e-01 | True | golden_retriever | 3.835090e-02 | True |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | Great_Pyrenees | 0.755945 | True | Old_English_sheepdog | 8.233680e-02 | True | Afghan_hound | 2.703660e-02 | True |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | toy_poodle | 0.820158 | True | miniature_poodle | 1.784040e-01 | True | toilet_tissue | 2.911580e-04 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | golden_retriever | 0.952773 | True | Labrador_retriever | 1.083500e-02 | True | clumber | 8.786010e-03 | True |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | Chesapeake_Bay_retriever | 0.420155 | True | Cardigan | 2.660300e-01 | True | Labrador_retriever | 4.251450e-02 | True |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | Pembroke | 0.582560 | True | Cardigan | 2.588690e-01 | True | nipple | 3.383450e-02 | False |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | Chihuahua | 0.412362 | True | beagle | 6.806610e-02 | True | borzoi | 4.507120e-02 | True |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | Chihuahua | 0.292343 | True | pug | 1.733640e-01 | True | French_bulldog | 4.550710e-02 | True |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | toy_poodle | 0.678046 | True | miniature_poodle | 1.602730e-01 | True | Airedale | 6.564870e-02 | True |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | pug | 0.836421 | True | Brabancon_griffon | 4.466780e-02 | True | French_bulldog | 3.657050e-02 | True |
| 371 | 672980819271634944 | https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg | 1 | car_mirror | 0.232754 | False | basset | 2.194610e-01 | True | beagle | 1.123970e-01 | True |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | Lakeland_terrier | 0.836632 | True | West_Highland_white_terrier | 7.389960e-02 | True | wire-haired_fox_terrier | 3.816010e-02 | True |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | French_bulldog | 0.719559 | True | boxer | 1.669270e-01 | True | Boston_bull | 1.013540e-01 | True |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | chow | 0.517255 | True | Pomeranian | 2.060530e-01 | True | koala | 1.270370e-01 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | schipperke | 0.888082 | True | groenendael | 4.772740e-02 | True | kelpie | 4.139800e-02 | True |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | Airedale | 0.443004 | True | brown_bear | 1.141620e-01 | False | Chesapeake_Bay_retriever | 9.463860e-02 | True |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | Shih-Tzu | 0.610453 | True | Maltese_dog | 1.668150e-01 | True | Old_English_sheepdog | 1.320150e-01 | True |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | golden_retriever | 0.889241 | True | Labrador_retriever | 6.468330e-02 | True | Great_Pyrenees | 1.261260e-02 | True |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | miniature_pinscher | 0.384099 | True | bloodhound | 7.992320e-02 | True | Rottweiler | 6.859410e-02 | True |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 383 | 673342308415348736 | https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg | 1 | ski_mask | 0.981017 | False | Chihuahua | 1.355920e-02 | True | kelpie | 6.521800e-04 | True |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | Chihuahua | 0.541408 | True | Italian_greyhound | 1.568910e-01 | True | miniature_pinscher | 6.955580e-02 | True |
| 385 | 673345638550134785 | https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg | 1 | hamster | 0.761025 | False | weasel | 6.936170e-02 | False | Pomeranian | 6.462700e-02 | True |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | West_Highland_white_terrier | 0.119188 | True | quill | 1.040140e-01 | False | Maltese_dog | 9.394400e-02 | True |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | golden_retriever | 0.672808 | True | Labrador_retriever | 2.758850e-01 | True | kuvasz | 2.225500e-02 | True |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | Rottweiler | 0.529248 | True | miniature_pinscher | 1.682960e-01 | True | Appenzeller | 1.004520e-01 | True |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | English_setter | 0.696568 | True | Brittany_spaniel | 1.040460e-01 | True | Ibizan_hound | 3.483250e-02 | True |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | beagle | 0.985062 | True | basset | 6.417840e-03 | True | Walker_hound | 3.532590e-03 | True |
| 393 | 673583129559498752 | https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg | 1 | Arctic_fox | 0.153271 | False | golden_retriever | 1.139460e-01 | True | borzoi | 1.107180e-01 | True |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | Newfoundland | 0.223101 | True | Leonberg | 1.111060e-01 | True | shovel | 8.562630e-02 | False |
| 395 | 673636718965334016 | https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg | 1 | wombat | 0.880257 | False | corn | 1.942070e-02 | False | pug | 1.904430e-02 | True |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | bull_mastiff | 0.700625 | True | Rhodesian_ridgeback | 9.469770e-02 | True | Brabancon_griffon | 5.755940e-02 | True |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | Labrador_retriever | 0.957670 | True | beagle | 1.241270e-02 | True | golden_retriever | 5.689130e-03 | True |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | Samoyed | 0.989853 | True | Arctic_fox | 3.343750e-03 | False | chow | 2.801720e-03 | True |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | Pekinese | 0.185903 | True | guinea_pig | 1.729510e-01 | False | pug | 1.661830e-01 | True |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | soft-coated_wheaten_terrier | 0.340806 | True | Sealyham_terrier | 2.348980e-01 | True | kuvasz | 2.034950e-01 | True |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | Chesapeake_Bay_retriever | 0.382220 | True | American_Staffordshire_terrier | 3.501400e-01 | True | seat_belt | 9.887390e-02 | False |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | Shih-Tzu | 0.165383 | True | Lhasa | 1.169770e-01 | True | Yorkshire_terrier | 6.389890e-02 | True |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | German_short-haired_pointer | 0.935771 | True | kelpie | 2.256100e-02 | True | Labrador_retriever | 8.846650e-03 | True |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | golden_retriever | 0.936333 | True | cocker_spaniel | 2.421090e-02 | True | Labrador_retriever | 9.434850e-03 | True |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | Chihuahua | 0.330171 | True | Siamese_cat | 1.815800e-01 | False | kelpie | 1.782270e-01 | True |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | Maltese_dog | 0.607401 | True | toy_poodle | 1.438360e-01 | True | Sealyham_terrier | 6.390700e-02 | True |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | Brabancon_griffon | 0.216767 | True | Chihuahua | 1.909580e-01 | True | golden_retriever | 1.632880e-01 | True |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 4.892770e-02 | True | Siberian_husky | 3.038600e-02 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 1.159840e-01 | True | miniature_pinscher | 5.217500e-02 | True |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | pug | 0.586161 | True | Brabancon_griffon | 8.274370e-02 | True | Chihuahua | 4.587770e-02 | True |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | Pembroke | 0.742320 | True | Cardigan | 8.493710e-02 | True | Eskimo_dog | 6.832090e-02 | True |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | collie | 0.992732 | True | borzoi | 5.042900e-03 | True | Shetland_sheepdog | 1.724780e-03 | True |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | Pomeranian | 0.648500 | True | Pekinese | 3.398350e-01 | True | Persian_cat | 6.448460e-03 | False |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | toy_poodle | 0.685617 | True | miniature_poodle | 1.519360e-01 | True | Maltese_dog | 4.553110e-02 | True |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | Eskimo_dog | 0.358459 | True | Norwegian_elkhound | 2.069630e-01 | True | malamute | 1.482360e-01 | True |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | toy_poodle | 0.927975 | True | miniature_poodle | 6.894640e-02 | True | standard_poodle | 1.315750e-03 | True |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 1.605800e-01 | False | three-toed_sloth | 1.321540e-01 | False |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | Cardigan | 0.984725 | True | Pembroke | 8.730390e-03 | True | kelpie | 2.194770e-03 | True |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | Airedale | 0.305392 | True | Kerry_blue_terrier | 2.500140e-01 | True | Lakeland_terrier | 1.886680e-01 | True |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | Pomeranian | 0.666957 | True | Shetland_sheepdog | 2.801940e-02 | True | ski_mask | 2.068270e-02 | False |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | Eskimo_dog | 0.615741 | True | Siberian_husky | 1.995440e-01 | True | malamute | 1.791070e-01 | True |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | Greater_Swiss_Mountain_dog | 0.519428 | True | boxer | 1.215000e-01 | True | Staffordshire_bullterrier | 1.144980e-01 | True |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | pug | 0.622921 | True | Norwegian_elkhound | 4.865850e-02 | True | Cardigan | 1.696550e-02 | True |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | German_shepherd | 0.991454 | True | malinois | 4.150230e-03 | True | bloodhound | 3.019130e-03 | True |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 435 | 674394782723014656 | https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg | 1 | toilet_tissue | 0.134983 | False | mosquito_net | 1.332470e-01 | False | Lakeland_terrier | 1.090990e-01 | True |
| 436 | 674410619106390016 | https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg | 1 | brown_bear | 0.698207 | False | sea_lion | 4.647450e-02 | False | beagle | 1.942680e-02 | True |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | Chihuahua | 0.287201 | True | Boston_bull | 2.509200e-01 | True | whippet | 1.410120e-01 | True |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | golden_retriever | 0.964497 | True | Labrador_retriever | 9.006180e-03 | True | tennis_ball | 7.138830e-03 | False |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 1.054160e-01 | True | Lhasa | 7.283230e-02 | True |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | Brabancon_griffon | 0.409909 | True | malinois | 2.446490e-01 | True | bull_mastiff | 7.481950e-02 | True |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | chow | 0.526230 | True | Pomeranian | 2.836470e-01 | True | toy_poodle | 6.766540e-02 | True |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | Pomeranian | 0.846986 | True | chow | 1.420140e-01 | True | keeshond | 2.605040e-03 | True |
| 444 | 674644256330530816 | https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg | 1 | soccer_ball | 0.398102 | False | basset | 3.356920e-01 | True | cocker_spaniel | 7.294080e-02 | True |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | flat-coated_retriever | 0.837448 | True | groenendael | 8.616650e-02 | True | Labrador_retriever | 1.605220e-02 | True |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | malamute | 0.180079 | True | Eskimo_dog | 1.780330e-01 | True | Siberian_husky | 7.796610e-02 | True |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | Pomeranian | 0.948537 | True | schipperke | 1.430990e-02 | True | Chihuahua | 8.120240e-03 | True |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | Dandie_Dinmont | 0.175915 | True | black-footed_ferret | 9.653430e-02 | False | toy_poodle | 6.414470e-02 | True |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | Bernese_mountain_dog | 0.583054 | True | Shetland_sheepdog | 6.599040e-02 | True | Greater_Swiss_Mountain_dog | 6.523620e-02 | True |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | vizsla | 0.665516 | True | redbone | 1.733660e-01 | True | basset | 1.347830e-01 | True |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | Samoyed | 0.634695 | True | Arctic_fox | 3.098530e-01 | False | kuvasz | 1.964100e-02 | True |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | Chihuahua | 0.407016 | True | French_bulldog | 3.099780e-01 | True | Siamese_cat | 2.276770e-01 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | miniature_poodle | 0.349561 | True | toy_poodle | 1.547110e-01 | True | Maltese_dog | 1.342290e-01 | True |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | Labrador_retriever | 0.801903 | True | Chesapeake_Bay_retriever | 1.935750e-01 | True | Rottweiler | 1.193050e-03 | True |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | giant_schnauzer | 0.119693 | True | Afghan_hound | 7.276270e-02 | True | miniature_schnauzer | 6.378590e-02 | True |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | Pembroke | 0.876479 | True | Cardigan | 9.691140e-02 | True | dingo | 9.195670e-03 | False |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/674805331965399040/pu/img/-7bw8niVrgIkLKOW.jpg | 1 | English_springer | 0.594467 | True | cocker_spaniel | 3.899940e-01 | True | Welsh_springer_spaniel | 7.096110e-03 | True |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | Rottweiler | 0.591829 | True | Doberman | 2.045440e-01 | True | black-and-tan_coonhound | 7.860190e-02 | True |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | Pembroke | 0.655279 | True | Pomeranian | 1.041640e-01 | True | Cardigan | 5.281770e-02 | True |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | boxer | 0.654697 | True | space_heater | 4.338880e-02 | False | beagle | 4.284760e-02 | True |
| 466 | 675015141583413248 | https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg | 1 | street_sign | 0.290091 | False | golden_retriever | 2.583720e-01 | True | sandbar | 1.321730e-01 | False |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | Samoyed | 0.978007 | True | chow | 7.121240e-03 | True | Pomeranian | 6.397830e-03 | True |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | dalmatian | 0.989519 | True | English_setter | 5.257670e-03 | True | German_short-haired_pointer | 1.442830e-03 | True |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | Labrador_retriever | 0.631501 | True | Brittany_spaniel | 1.019270e-01 | True | Chesapeake_Bay_retriever | 6.264980e-02 | True |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | Labrador_retriever | 0.458746 | True | Great_Dane | 2.355040e-01 | True | Staffordshire_bullterrier | 1.168640e-01 | True |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | dingo | 0.288447 | False | Cardigan | 2.299440e-01 | True | Pembroke | 1.904070e-01 | True |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | golden_retriever | 0.949215 | True | Labrador_retriever | 1.676540e-02 | True | flat-coated_retriever | 1.063730e-02 | True |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | chow | 0.999876 | True | Tibetan_mastiff | 5.867490e-05 | True | Tibetan_terrier | 2.877850e-05 | True |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 477 | 675166823650848770 | https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg | 1 | llama | 0.284394 | False | standard_poodle | 1.325690e-01 | True | teddy | 1.279750e-01 | False |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | Pembroke | 0.773135 | True | Cardigan | 1.168100e-01 | True | chow | 3.903620e-02 | True |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | borzoi | 0.866367 | True | Saluki | 1.220790e-01 | True | Irish_wolfhound | 4.019720e-03 | True |
| 480 | 675354435921575936 | https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | Labrador_retriever | 0.479008 | True | ice_bear | 2.182890e-01 | False | kuvasz | 1.399110e-01 | True |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | Chihuahua | 0.416385 | True | West_Highland_white_terrier | 1.029330e-01 | True | Samoyed | 8.729950e-02 | True |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | Labrador_retriever | 0.986548 | True | golden_retriever | 8.861850e-03 | True | Chihuahua | 6.935280e-04 | True |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | West_Highland_white_terrier | 0.139613 | True | seat_belt | 1.186470e-01 | False | Old_English_sheepdog | 9.395220e-02 | True |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | vizsla | 0.519589 | True | miniature_pinscher | 6.477120e-02 | True | Rhodesian_ridgeback | 6.149130e-02 | True |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | Scottish_deerhound | 0.240591 | True | groenendael | 1.569160e-01 | True | flat-coated_retriever | 9.089940e-02 | True |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | cocker_spaniel | 0.299708 | True | golden_retriever | 2.636650e-01 | True | Irish_setter | 8.032330e-02 | True |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | Pembroke | 0.918441 | True | Cardigan | 2.733950e-02 | True | Siberian_husky | 2.022100e-02 | True |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | chow | 0.749368 | True | schipperke | 1.337380e-01 | True | Newfoundland | 4.991380e-02 | True |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | English_springer | 0.990300 | True | Welsh_springer_spaniel | 2.079910e-03 | True | cocker_spaniel | 2.013780e-03 | True |
| 493 | 675707330206547968 | https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg | 1 | bath_towel | 0.721933 | False | Staffordshire_bullterrier | 5.934420e-02 | True | bagel | 3.570160e-02 | False |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | standard_schnauzer | 0.441427 | True | miniature_schnauzer | 2.488850e-01 | True | Sealyham_terrier | 1.649670e-01 | True |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/675740268751138818/pu/img/dVaVeFAVT-lk_1ZV.jpg | 1 | golden_retriever | 0.800495 | True | kuvasz | 9.775640e-02 | True | Saluki | 6.841460e-02 | True |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | Maltese_dog | 0.921968 | True | West_Highland_white_terrier | 1.781070e-02 | True | toy_poodle | 1.355540e-02 | True |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | beagle | 0.681218 | True | basset | 1.251210e-01 | True | boxer | 8.039820e-02 | True |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | basset | 0.556373 | True | beagle | 2.016750e-01 | True | bloodhound | 1.108480e-01 | True |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | Pomeranian | 0.460710 | True | chow | 2.027650e-01 | True | Pekinese | 1.332660e-01 | True |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | pug | 0.883952 | True | Boston_bull | 1.105680e-02 | True | French_bulldog | 9.839810e-03 | True |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | Labrador_retriever | 0.868367 | True | golden_retriever | 4.330460e-02 | True | vizsla | 2.820720e-02 | True |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | golden_retriever | 0.263892 | True | Welsh_springer_spaniel | 1.841930e-01 | True | beagle | 1.822410e-01 | True |
| 503 | 675878199931371520 | https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg | 1 | wood_rabbit | 0.785756 | False | hare | 1.181810e-01 | False | Cardigan | 4.362710e-02 | True |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | West_Highland_white_terrier | 0.672117 | True | Old_English_sheepdog | 1.461470e-01 | True | komondor | 2.314140e-02 | True |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | Italian_greyhound | 0.305637 | True | whippet | 2.320570e-01 | True | Great_Dane | 1.178060e-01 | True |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | Labrador_retriever | 0.407430 | True | malinois | 7.703670e-02 | True | pug | 7.459730e-02 | True |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | bull_mastiff | 0.743808 | True | boxer | 1.066970e-01 | True | American_Staffordshire_terrier | 4.233530e-02 | True |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | Shih-Tzu | 0.225848 | True | Norfolk_terrier | 1.868730e-01 | True | Irish_terrier | 1.069870e-01 | True |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | Irish_water_spaniel | 0.388332 | True | standard_poodle | 2.841210e-01 | True | greenhouse | 3.486810e-02 | False |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | Chihuahua | 0.376741 | True | Italian_greyhound | 1.731140e-01 | True | muzzle | 7.148510e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 513 | 676219687039057920 | https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg | 1 | bubble | 0.997556 | False | leafhopper | 1.589610e-04 | False | whippet | 1.324640e-04 | True |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | French_bulldog | 0.961996 | True | Chihuahua | 2.179300e-02 | True | Boston_bull | 6.916290e-03 | True |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | teddy | 0.098283 | False | toy_poodle | 9.802930e-02 | True | shopping_basket | 7.785210e-02 | False |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | golden_retriever | 0.583875 | True | cocker_spaniel | 2.036710e-01 | True | Labrador_retriever | 3.612170e-02 | True |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | Maltese_dog | 0.579472 | True | toy_poodle | 1.334460e-01 | True | Shih-Tzu | 9.439660e-02 | True |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | golden_retriever | 0.790386 | True | borzoi | 2.288510e-02 | True | dingo | 1.534340e-02 | False |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | pug | 0.985387 | True | Norwegian_elkhound | 4.416900e-03 | True | French_bulldog | 3.892870e-03 | True |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | chow | 0.265274 | True | ice_bear | 1.676140e-01 | False | fur_coat | 1.175060e-01 | False |
| 521 | 676575501977128964 | https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg | 1 | feather_boa | 0.424106 | False | Yorkshire_terrier | 7.314430e-02 | True | Shetland_sheepdog | 5.759760e-02 | True |
| 522 | 676582956622721024 | https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg | 1 | seat_belt | 0.790028 | False | Boston_bull | 1.963070e-01 | True | French_bulldog | 1.242890e-02 | True |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | Boston_bull | 0.976577 | True | French_bulldog | 1.432370e-02 | True | Chihuahua | 2.301920e-03 | True |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | whippet | 0.877021 | True | Great_Dane | 3.418190e-02 | True | boxer | 2.840400e-02 | True |
| 525 | 676606785097199616 | https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg | 1 | Loafer | 0.202999 | False | doormat | 2.004110e-01 | False | malinois | 1.423000e-01 | True |
| 526 | 676613908052996102 | https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg | 1 | book_jacket | 0.493790 | False | Doberman | 9.642280e-02 | True | miniature_pinscher | 7.064670e-02 | True |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | Chihuahua | 0.841084 | True | Pomeranian | 1.205300e-01 | True | Pekinese | 6.600340e-03 | True |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/676776408941662209/pu/img/k-6I3YEZAQtYPBXR.jpg | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | Chihuahua | 0.440916 | True | Pomeranian | 3.458060e-01 | True | cocker_spaniel | 6.033120e-02 | True |
| 530 | 676819651066732545 | https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg | 2 | rain_barrel | 0.625555 | False | barrel | 1.383830e-01 | False | Labrador_retriever | 3.946460e-02 | True |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | Great_Pyrenees | 0.869804 | True | kuvasz | 7.981430e-02 | True | standard_poodle | 1.326300e-02 | True |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | Chesapeake_Bay_retriever | 0.371146 | True | water_buffalo | 9.959630e-02 | False | Weimaraner | 4.896790e-02 | True |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | Chesapeake_Bay_retriever | 0.545286 | True | Norwegian_elkhound | 8.148200e-02 | True | space_heater | 4.739110e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | Pekinese | 0.752707 | True | golden_retriever | 5.565460e-02 | True | Great_Pyrenees | 4.101780e-02 | True |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | Welsh_springer_spaniel | 0.206479 | True | Saint_Bernard | 1.393390e-01 | True | boxer | 1.146060e-01 | True |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/676957802976419840/pu/img/dCj-qlXo73A5hf6Q.jpg | 1 | Labrador_retriever | 0.772423 | True | beagle | 5.590170e-02 | True | golden_retriever | 3.115190e-02 | True |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | malamute | 0.363257 | True | Siberian_husky | 2.458620e-01 | True | Eskimo_dog | 1.255470e-01 | True |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | English_setter | 0.282396 | True | Shih-Tzu | 8.411190e-02 | True | Old_English_sheepdog | 5.953800e-02 | True |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | Shetland_sheepdog | 0.656616 | True | collie | 1.954050e-01 | True | German_shepherd | 1.310320e-02 | True |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | Japanese_spaniel | 0.661178 | True | Pekinese | 1.501190e-01 | True | Chihuahua | 1.197200e-01 | True |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | Blenheim_spaniel | 0.924127 | True | Japanese_spaniel | 5.479010e-02 | True | Chihuahua | 8.204040e-03 | True |
| 546 | 677328882937298944 | https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg | 1 | water_buffalo | 0.424250 | False | kelpie | 2.905410e-02 | True | Staffordshire_bullterrier | 2.846970e-02 | True |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | beagle | 0.313464 | True | boxer | 2.185030e-01 | True | French_bulldog | 1.064620e-01 | True |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | Lakeland_terrier | 0.859392 | True | Airedale | 6.729170e-02 | True | Irish_water_spaniel | 4.953060e-02 | True |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | Staffordshire_bullterrier | 0.689259 | True | Norwegian_elkhound | 2.612100e-02 | True | American_Staffordshire_terrier | 2.307470e-02 | True |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | American_Staffordshire_terrier | 0.914978 | True | Staffordshire_bullterrier | 8.439530e-02 | True | boxer | 4.616630e-04 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 2.490170e-01 | True | Pekinese | 2.092130e-01 | True |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | basset | 0.397295 | True | Welsh_springer_spaniel | 1.995540e-01 | True | purse | 1.056410e-01 | False |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/677644010865999872/pu/img/zVHEMYnJKzq1SauT.jpg | 1 | Chihuahua | 0.626236 | True | Italian_greyhound | 1.284830e-01 | True | swing | 5.984040e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | Maltese_dog | 0.817908 | True | Angora | 7.780510e-02 | False | Pomeranian | 2.218420e-02 | True |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | Pembroke | 0.573047 | True | sunglasses | 1.267580e-01 | False | golden_retriever | 1.080470e-01 | True |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | Shih-Tzu | 0.916645 | True | Lhasa | 5.788340e-02 | True | Pekinese | 2.012580e-02 | True |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | Siberian_husky | 0.120849 | True | junco | 7.920560e-02 | False | malamute | 6.308750e-02 | True |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | teddy | 0.662908 | False | crib | 3.189120e-02 | False | chow | 2.543780e-02 | True |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | dalmatian | 0.550702 | True | kuvasz | 6.022640e-02 | True | Great_Pyrenees | 5.863100e-02 | True |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | Eskimo_dog | 0.199347 | True | dalmatian | 1.532250e-01 | True | American_Staffordshire_terrier | 1.077980e-01 | True |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | miniature_pinscher | 0.822048 | True | Doberman | 9.608450e-02 | True | Rottweiler | 3.270930e-02 | True |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | Chihuahua | 0.613819 | True | Yorkshire_terrier | 1.279310e-01 | True | Pomeranian | 6.212430e-02 | True |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | Maltese_dog | 0.897841 | True | Lhasa | 3.571750e-02 | True | Tibetan_terrier | 1.710750e-02 | True |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | Norfolk_terrier | 0.378643 | True | golden_retriever | 9.559390e-02 | True | kelpie | 8.530920e-02 | True |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | golden_retriever | 0.853284 | True | cocker_spaniel | 2.622980e-02 | True | Labrador_retriever | 2.412280e-02 | True |
| 568 | 678380236862578688 | https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg | 1 | dogsled | 0.088540 | False | snowmobile | 5.729100e-02 | False | Samoyed | 4.760140e-02 | True |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | miniature_pinscher | 0.516284 | True | kelpie | 2.274020e-01 | True | vizsla | 1.032460e-01 | True |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | Pembroke | 0.956180 | True | Cardigan | 3.180310e-02 | True | Chihuahua | 6.276500e-03 | True |
| 571 | 678399652199309312 | https://pbs.twimg.com/ext_tw_video_thumb/678399528077250560/pu/img/BOjUNHRsYLeSo0hl.jpg | 1 | swing | 0.929196 | False | Bedlington_terrier | 1.504720e-02 | True | Great_Pyrenees | 1.403890e-02 | True |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | schipperke | 0.145877 | True | Labrador_retriever | 9.835380e-02 | True | kelpie | 9.739340e-02 | True |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | Maltese_dog | 0.759945 | True | toy_poodle | 1.011940e-01 | True | Shih-Tzu | 5.603740e-02 | True |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | Staffordshire_bullterrier | 0.284492 | True | Rottweiler | 1.894340e-01 | True | American_Staffordshire_terrier | 1.894300e-01 | True |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | Labrador_retriever | 0.338757 | True | flat-coated_retriever | 3.044700e-01 | True | chest | 9.339230e-02 | False |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 577 | 678740035362037760 | https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg | 1 | seat_belt | 0.787164 | False | sunglasses | 4.573870e-02 | False | beagle | 2.252510e-02 | True |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | malamute | 0.606654 | True | Border_collie | 1.938310e-01 | True | collie | 4.837810e-02 | True |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | Irish_terrier | 0.696646 | True | Australian_terrier | 7.496160e-02 | True | Irish_setter | 6.390120e-02 | True |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | Pembroke | 0.194681 | True | toy_poodle | 1.218210e-01 | True | Pomeranian | 9.684300e-02 | True |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | Airedale | 0.583122 | True | silky_terrier | 1.295670e-01 | True | Lakeland_terrier | 9.472660e-02 | True |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | Labrador_retriever | 0.213673 | True | beagle | 1.462350e-01 | True | Airedale | 1.227010e-01 | True |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | Labrador_retriever | 0.680251 | True | Chesapeake_Bay_retriever | 2.016970e-01 | True | golden_retriever | 1.967590e-02 | True |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | Eskimo_dog | 0.330216 | True | Siberian_husky | 1.870030e-01 | True | Chihuahua | 1.014200e-01 | True |
| 586 | 679047485189439488 | https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg | 1 | panpipe | 0.962572 | False | bannister | 2.524820e-02 | False | golden_retriever | 2.930350e-03 | True |
| 587 | 679062614270468097 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/679111114081370114/pu/img/hFca8BHjRopgD0cM.jpg | 1 | kelpie | 0.189423 | True | beagle | 1.219880e-01 | True | basset | 1.211710e-01 | True |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | Scottish_deerhound | 0.194610 | True | Irish_wolfhound | 1.628550e-01 | True | giant_schnauzer | 1.598370e-01 | True |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | Italian_greyhound | 0.302685 | True | hair_slide | 1.242810e-01 | False | Afghan_hound | 5.984600e-02 | True |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | toy_poodle | 0.621780 | True | miniature_poodle | 1.978190e-01 | True | soft-coated_wheaten_terrier | 4.674500e-02 | True |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | Maltese_dog | 0.145742 | True | toy_poodle | 1.394070e-01 | True | West_Highland_white_terrier | 1.088210e-01 | True |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | Chihuahua | 0.761972 | True | black-footed_ferret | 1.506050e-01 | False | squirrel_monkey | 2.814790e-02 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | dalmatian | 0.750256 | True | jaguar | 1.690070e-01 | False | zebra | 6.481490e-03 | False |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | boxer | 0.459604 | True | Boston_bull | 1.979130e-01 | True | French_bulldog | 8.702250e-02 | True |
| 599 | 679729593985699840 | https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg | 1 | wallaby | 0.164215 | False | West_Highland_white_terrier | 9.351480e-02 | True | ashcan | 6.727830e-02 | False |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | French_bulldog | 0.319139 | True | Chihuahua | 1.540880e-01 | True | Cardigan | 1.176880e-01 | True |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | bloodhound | 0.528819 | True | bull_mastiff | 4.201190e-01 | True | French_bulldog | 9.480590e-03 | True |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | Airedale | 0.903832 | True | Border_terrier | 3.471260e-02 | True | toy_poodle | 2.137800e-02 | True |
| 604 | 679854723806179328 | https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg | 1 | llama | 0.887963 | False | ram | 9.502070e-02 | False | chow | 2.307390e-03 | True |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | EntleBucher | 0.523206 | True | Greater_Swiss_Mountain_dog | 4.316570e-01 | True | Appenzeller | 4.420790e-02 | True |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | Samoyed | 0.995466 | True | Great_Pyrenees | 1.833950e-03 | True | Pomeranian | 6.669490e-04 | True |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 1.218110e-01 | True | bubble | 1.178200e-01 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | golden_retriever | 0.698961 | True | chow | 1.459710e-01 | True | Pomeranian | 3.488800e-02 | True |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | pug | 0.999365 | True | French_bulldog | 5.436150e-04 | True | Boston_bull | 2.815280e-05 | True |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | Maltese_dog | 0.199121 | True | West_Highland_white_terrier | 1.978970e-01 | True | Shih-Tzu | 1.571300e-01 | True |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | miniature_poodle | 0.457117 | True | toy_poodle | 2.264810e-01 | True | Maltese_dog | 6.768150e-02 | True |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | bluetick | 0.268681 | True | miniature_pinscher | 1.256520e-01 | True | English_setter | 8.937270e-02 | True |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | Brittany_spaniel | 0.733253 | True | Welsh_springer_spaniel | 2.516340e-01 | True | English_springer | 9.243210e-03 | True |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/680440290977693696/pu/img/B900g7b-n-zhnwi5.jpg | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | Lakeland_terrier | 0.796694 | True | West_Highland_white_terrier | 1.387090e-01 | True | Norwich_terrier | 1.625340e-02 | True |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | kuvasz | 0.438627 | True | Samoyed | 1.116220e-01 | True | Great_Pyrenees | 6.406080e-02 | True |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | Chihuahua | 0.538354 | True | muzzle | 8.428870e-02 | False | ski_mask | 7.669010e-02 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | French_bulldog | 0.700764 | True | Chihuahua | 7.238960e-02 | True | American_Staffordshire_terrier | 3.961870e-02 | True |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | pug | 0.996720 | True | Labrador_retriever | 1.438790e-03 | True | Staffordshire_bullterrier | 5.176030e-04 | True |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | Pembroke | 0.427781 | True | Shetland_sheepdog | 1.606690e-01 | True | Pomeranian | 1.112500e-01 | True |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | Shetland_sheepdog | 0.876337 | True | collie | 7.833100e-02 | True | Pomeranian | 2.040750e-02 | True |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | Pomeranian | 0.615678 | True | golden_retriever | 1.264550e-01 | True | Chihuahua | 8.718360e-02 | True |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | Labrador_retriever | 0.784398 | True | Siberian_husky | 5.592510e-02 | True | beagle | 2.275010e-02 | True |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | soft-coated_wheaten_terrier | 0.289598 | True | West_Highland_white_terrier | 1.571950e-01 | True | toy_poodle | 7.443470e-02 | True |
| 632 | 680959110691590145 | https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg | 2 | carousel | 0.500992 | False | feather_boa | 6.439000e-02 | False | pug | 4.435650e-02 | True |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | pug | 0.713102 | True | whippet | 5.742630e-02 | True | quilt | 5.601810e-02 | False |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | Pomeranian | 0.992619 | True | keeshond | 4.356450e-03 | True | schipperke | 8.140000e-04 | True |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | Irish_setter | 0.406047 | True | cocker_spaniel | 3.456460e-01 | True | Airedale | 1.479120e-01 | True |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | Tibetan_terrier | 0.382101 | True | miniature_poodle | 9.542940e-02 | True | Maltese_dog | 6.573770e-02 | True |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | Saint_Bernard | 0.998830 | True | Pekinese | 3.913120e-04 | True | Great_Pyrenees | 2.235820e-04 | True |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | Lhasa | 0.482401 | True | Shih-Tzu | 1.136720e-01 | True | Pomeranian | 9.622860e-02 | True |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | Samoyed | 0.362596 | True | Eskimo_dog | 2.453950e-01 | True | Siberian_husky | 1.082320e-01 | True |
| 642 | 681339448655802368 | https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg | 1 | seat_belt | 0.532441 | False | Labrador_retriever | 9.461490e-02 | True | kuvasz | 8.986300e-02 | True |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | Norfolk_terrier | 0.205067 | True | German_shepherd | 1.604390e-01 | True | chow | 1.562340e-01 | True |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | Rottweiler | 0.760671 | True | Labrador_retriever | 9.658470e-02 | True | Staffordshire_bullterrier | 4.033260e-02 | True |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | toy_poodle | 0.821704 | True | miniature_poodle | 1.160420e-01 | True | Yorkshire_terrier | 1.484720e-02 | True |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | Pomeranian | 0.800538 | True | chow | 1.468920e-01 | True | Pekinese | 3.761250e-02 | True |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | toy_poodle | 0.920992 | True | miniature_poodle | 6.085720e-02 | True | Maltese_dog | 6.063720e-03 | True |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | Chihuahua | 0.203570 | True | doormat | 1.343160e-01 | False | toy_terrier | 8.448230e-02 | True |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | Labrador_retriever | 0.452577 | True | golden_retriever | 4.034200e-01 | True | beagle | 6.948570e-02 | True |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | schipperke | 0.997953 | True | groenendael | 6.764350e-04 | True | miniature_pinscher | 2.112460e-04 | True |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | Siberian_husky | 0.439670 | True | Eskimo_dog | 3.404740e-01 | True | malamute | 1.012530e-01 | True |
| 657 | 682303737705140231 | https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg | 1 | seat_belt | 0.997659 | False | Lakeland_terrier | 1.730920e-03 | True | Airedale | 2.036100e-04 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 3.152860e-01 | True | Great_Dane | 6.217890e-02 | True |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | vizsla | 0.657275 | True | paddle | 9.028640e-02 | False | Rhodesian_ridgeback | 4.822830e-02 | True |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | whippet | 0.594701 | True | Italian_greyhound | 3.140910e-01 | True | Mexican_hairless | 3.777330e-02 | True |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | English_springer | 0.440781 | True | Cardigan | 4.111820e-01 | True | Border_collie | 2.241220e-02 | True |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | beagle | 0.413824 | True | Cardigan | 2.635530e-01 | True | basset | 1.676180e-01 | True |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | English_setter | 0.947198 | True | English_springer | 3.112770e-02 | True | Brittany_spaniel | 5.512470e-03 | True |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | dingo | 0.278600 | False | Chihuahua | 1.552070e-01 | True | loupe | 1.535980e-01 | False |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | boxer | 0.722218 | True | bull_mastiff | 1.938040e-01 | True | French_bulldog | 5.519370e-02 | True |
| 669 | 683078886620553216 | https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg | 1 | koala | 0.141432 | False | Eskimo_dog | 9.404420e-02 | True | wallaby | 8.523650e-02 | False |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | golden_retriever | 0.889848 | True | kuvasz | 5.300820e-02 | True | Labrador_retriever | 3.788120e-02 | True |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | cocker_spaniel | 0.901392 | True | soft-coated_wheaten_terrier | 2.860480e-02 | True | miniature_schnauzer | 1.780540e-02 | True |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | Leonberg | 0.605851 | True | chow | 1.834700e-01 | True | German_shepherd | 7.966190e-02 | True |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | Pembroke | 0.406509 | True | Cardigan | 1.548540e-01 | True | Siberian_husky | 1.363660e-01 | True |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | French_bulldog | 0.992833 | True | Boston_bull | 4.748630e-03 | True | pug | 1.391690e-03 | True |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | Lakeland_terrier | 0.303512 | True | soft-coated_wheaten_terrier | 2.114240e-01 | True | golden_retriever | 1.707250e-01 | True |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | Italian_greyhound | 0.399560 | True | whippet | 2.671530e-01 | True | German_short-haired_pointer | 8.131910e-02 | True |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | keeshond | 0.508951 | True | chow | 4.420160e-01 | True | German_shepherd | 1.320600e-02 | True |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | Airedale | 0.945362 | True | Irish_terrier | 2.685000e-02 | True | Lakeland_terrier | 1.682640e-02 | True |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | Pembroke | 0.895279 | True | Cardigan | 2.238500e-02 | True | cocker_spaniel | 1.704520e-02 | True |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | miniature_pinscher | 0.072885 | True | Labrador_retriever | 5.786580e-02 | True | schipperke | 5.325660e-02 | True |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | malamute | 0.577376 | True | Siberian_husky | 2.871310e-01 | True | Eskimo_dog | 1.175630e-01 | True |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/683834825250320385/pu/img/yZdrqMlyky4KGOu6.jpg | 1 | Maltese_dog | 0.738449 | True | toy_poodle | 1.029920e-01 | True | Samoyed | 2.324720e-02 | True |
| 683 | 683849932751646720 | https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg | 1 | hog | 0.458855 | False | Mexican_hairless | 1.649060e-01 | True | wild_boar | 1.117000e-01 | False |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | toy_poodle | 0.551352 | True | teddy | 1.806780e-01 | False | miniature_poodle | 1.640950e-01 | True |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | bluetick | 0.174738 | True | Shetland_sheepdog | 1.261010e-01 | True | beagle | 1.228870e-01 | True |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | Labrador_retriever | 0.627856 | True | German_short-haired_pointer | 1.736750e-01 | True | Chesapeake_Bay_retriever | 4.134170e-02 | True |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | chow | 0.334783 | True | German_shepherd | 1.626470e-01 | True | golden_retriever | 1.386120e-01 | True |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | kelpie | 0.537782 | True | American_Staffordshire_terrier | 8.295320e-02 | True | Staffordshire_bullterrier | 6.975990e-02 | True |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | Chihuahua | 0.379365 | True | toy_terrier | 1.218090e-01 | True | Boston_bull | 9.598090e-02 | True |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | soft-coated_wheaten_terrier | 0.791182 | True | cocker_spaniel | 7.244410e-02 | True | teddy | 7.148650e-02 | False |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | golden_retriever | 0.203249 | True | Samoyed | 6.795810e-02 | True | Great_Pyrenees | 6.532750e-02 | True |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | Pembroke | 0.508498 | True | black-footed_ferret | 1.155320e-01 | False | weasel | 5.128010e-02 | False |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | Labrador_retriever | 0.673691 | True | Chesapeake_Bay_retriever | 1.948970e-01 | True | American_Staffordshire_terrier | 5.947130e-02 | True |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | Chihuahua | 0.937810 | True | Pomeranian | 2.030670e-02 | True | polecat | 1.735700e-02 | False |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/684538367950872576/pu/img/kTKOkSU45BS-fpq8.jpg | 1 | Chihuahua | 0.702583 | True | Siamese_cat | 6.821810e-02 | False | macaque | 4.332460e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | Weimaraner | 0.948688 | True | English_setter | 3.535240e-02 | True | Brittany_spaniel | 3.878780e-03 | True |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | miniature_schnauzer | 0.294457 | True | Norfolk_terrier | 1.618850e-01 | True | West_Highland_white_terrier | 1.209920e-01 | True |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | Pembroke | 0.708034 | True | Cardigan | 2.914470e-01 | True | dingo | 1.845610e-04 | False |
| 703 | 684914660081053696 | https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg | 1 | shopping_cart | 0.460950 | False | chow | 2.612880e-01 | True | Labrador_retriever | 7.419380e-02 | True |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | Labrador_retriever | 0.769412 | True | golden_retriever | 1.448930e-01 | True | lion | 2.143980e-02 | False |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | Border_collie | 0.665578 | True | collie | 1.768460e-01 | True | Old_English_sheepdog | 6.517470e-02 | True |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | Bernese_mountain_dog | 0.975096 | True | Appenzeller | 1.457810e-02 | True | EntleBucher | 5.943480e-03 | True |
| 708 | 685198997565345792 | https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg | 1 | dishwasher | 0.888829 | False | stove | 1.341150e-02 | False | Old_English_sheepdog | 9.671380e-03 | True |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | pug | 0.999044 | True | Norwegian_elkhound | 5.465860e-04 | True | bull_mastiff | 2.351950e-04 | True |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | Pomeranian | 0.963176 | True | Shetland_sheepdog | 1.946830e-02 | True | keeshond | 8.604930e-03 | True |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | chow | 0.470162 | True | Pomeranian | 1.596770e-01 | True | Eskimo_dog | 1.050740e-01 | True |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | Boston_bull | 0.972483 | True | French_bulldog | 2.546930e-02 | True | boxer | 4.575440e-04 | True |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 714 | 685532292383666176 | https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg | 1 | white_wolf | 0.318524 | False | dingo | 2.154360e-01 | False | collie | 9.580520e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | Lakeland_terrier | 0.253839 | True | Airedale | 2.133490e-01 | True | three-toed_sloth | 8.383410e-02 | False |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/685663358637486080/pu/img/3cXSHFZAgJQ_dDCf.jpg | 1 | Chesapeake_Bay_retriever | 0.171174 | True | tennis_ball | 9.064400e-02 | False | racket | 4.850770e-02 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | Yorkshire_terrier | 0.414963 | True | briard | 6.350520e-02 | True | Pekinese | 5.368220e-02 | True |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/685943751555051520/pu/img/rlBvQWaFPUMx1MTi.jpg | 1 | papillon | 0.200812 | True | toy_terrier | 1.145120e-01 | True | Cardigan | 9.451960e-02 | True |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | Siberian_husky | 0.450678 | True | Eskimo_dog | 4.302750e-01 | True | malamute | 1.185900e-01 | True |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | Rhodesian_ridgeback | 0.885301 | True | redbone | 4.233540e-02 | True | seat_belt | 1.049300e-02 | False |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | Great_Dane | 0.236920 | True | Irish_wolfhound | 1.176080e-01 | True | Greater_Swiss_Mountain_dog | 1.039000e-01 | True |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | Pomeranian | 0.985789 | True | keeshond | 4.082910e-03 | True | Pekinese | 3.333660e-03 | True |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | pug | 0.985237 | True | bull_mastiff | 8.840620e-03 | True | boxer | 2.321430e-03 | True |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | German_shepherd | 0.830816 | True | Leonberg | 7.632520e-02 | True | bloodhound | 3.744860e-02 | True |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | Yorkshire_terrier | 0.477704 | True | silky_terrier | 1.716730e-01 | True | Australian_terrier | 8.833400e-02 | True |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | Labrador_retriever | 0.320012 | True | Ibizan_hound | 2.081720e-01 | True | Saluki | 7.897470e-02 | True |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | Rottweiler | 0.441331 | True | miniature_pinscher | 2.331800e-01 | True | Gordon_setter | 9.358200e-02 | True |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | Norwich_terrier | 0.100499 | True | cocker_spaniel | 8.067110e-02 | True | golden_retriever | 7.940620e-02 | True |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | Tibetan_mastiff | 0.338812 | True | Newfoundland | 1.809250e-01 | True | golden_retriever | 1.800230e-01 | True |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | Labrador_retriever | 0.417107 | True | Chesapeake_Bay_retriever | 3.417300e-01 | True | German_short-haired_pointer | 1.777020e-01 | True |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | borzoi | 0.883086 | True | whippet | 2.293360e-02 | True | Saluki | 2.160560e-02 | True |
| 738 | 687124485711986689 | https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg | 1 | car_mirror | 0.997121 | False | seat_belt | 3.750870e-04 | False | beagle | 2.162060e-04 | True |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | pug | 0.178205 | True | Chihuahua | 1.491640e-01 | True | Shih-Tzu | 1.205050e-01 | True |
| 740 | 687312378585812992 | https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg | 1 | seat_belt | 0.703561 | False | Great_Dane | 1.399090e-01 | True | Weimaraner | 2.111250e-02 | True |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | Shih-Tzu | 0.747208 | True | Maltese_dog | 9.102540e-02 | True | Lhasa | 3.578780e-02 | True |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | Boston_bull | 0.223366 | True | boxer | 1.835960e-01 | True | French_bulldog | 1.769160e-01 | True |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | English_springer | 0.472273 | True | English_setter | 1.668620e-01 | True | Brittany_spaniel | 1.634110e-01 | True |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | Rottweiler | 0.391471 | True | miniature_pinscher | 2.735950e-01 | True | Tibetan_mastiff | 4.169190e-02 | True |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | pug | 0.957365 | True | French_bulldog | 3.855870e-02 | True | toy_poodle | 6.673610e-04 | True |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | miniature_pinscher | 0.956063 | True | toy_terrier | 1.223060e-02 | True | Chihuahua | 5.397480e-03 | True |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | Staffordshire_bullterrier | 0.151113 | True | boxer | 1.356970e-01 | True | American_Staffordshire_terrier | 8.659120e-02 | True |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | Lakeland_terrier | 0.873029 | True | soft-coated_wheaten_terrier | 6.092420e-02 | True | toy_poodle | 1.703090e-02 | True |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | Pomeranian | 0.997210 | True | Pekinese | 8.032410e-04 | True | keeshond | 3.725150e-04 | True |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | Eskimo_dog | 0.240602 | True | Norwegian_elkhound | 1.803690e-01 | True | Siberian_husky | 9.073880e-02 | True |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | pug | 0.973819 | True | Chihuahua | 1.089100e-02 | True | Staffordshire_bullterrier | 6.863890e-03 | True |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | golden_retriever | 0.900437 | True | cocker_spaniel | 2.229250e-02 | True | sombrero | 1.499680e-02 | False |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | Pembroke | 0.696372 | True | Cardigan | 1.210520e-01 | True | Shetland_sheepdog | 5.059200e-02 | True |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | papillon | 0.531279 | True | Blenheim_spaniel | 2.141970e-01 | True | Border_collie | 5.383990e-02 | True |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | American_Staffordshire_terrier | 0.599660 | True | Staffordshire_bullterrier | 3.809760e-01 | True | bull_mastiff | 3.889020e-03 | True |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | malinois | 0.199512 | True | German_shepherd | 9.679730e-02 | True | Saluki | 8.284820e-02 | True |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | Cardigan | 0.614231 | True | skunk | 1.393920e-01 | False | toilet_tissue | 3.115820e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | Ibizan_hound | 0.853170 | True | Chihuahua | 3.989730e-02 | True | Italian_greyhound | 3.521960e-02 | True |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | Pembroke | 0.430544 | True | red_fox | 2.065760e-01 | False | Pomeranian | 1.543520e-01 | True |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | English_springer | 0.303781 | True | papillon | 1.651320e-01 | True | Welsh_springer_spaniel | 1.490510e-01 | True |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | cocker_spaniel | 0.816044 | True | golden_retriever | 5.413540e-02 | True | Airedale | 3.064810e-02 | True |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | American_Staffordshire_terrier | 0.215161 | True | Chesapeake_Bay_retriever | 7.905090e-02 | True | Doberman | 7.022590e-02 | True |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | Chihuahua | 0.637546 | True | American_Staffordshire_terrier | 1.506940e-01 | True | Staffordshire_bullterrier | 1.039530e-01 | True |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | Scotch_terrier | 0.267979 | True | affenpinscher | 1.996190e-01 | True | cairn | 1.274690e-01 | True |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/689289176076959744/pu/img/hEFkFtmMu_hkTlxK.jpg | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | Pembroke | 0.799319 | True | Cardigan | 1.895370e-01 | True | papillon | 3.386190e-03 | True |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | Eskimo_dog | 0.169482 | True | Siberian_husky | 1.616550e-01 | True | dingo | 1.544140e-01 | False |
| 773 | 689599056876867584 | https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg | 1 | dogsled | 0.426494 | False | cocker_spaniel | 7.310140e-02 | True | Chihuahua | 7.032290e-02 | True |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | toy_poodle | 0.279604 | True | mashed_potato | 2.085640e-01 | False | Labrador_retriever | 7.748090e-02 | True |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | Italian_greyhound | 0.322818 | True | whippet | 2.469660e-01 | True | Chihuahua | 1.225410e-01 | True |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | collie | 0.600186 | True | Shetland_sheepdog | 2.989390e-01 | True | borzoi | 2.261560e-02 | True |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | Old_English_sheepdog | 0.269155 | True | Tibetan_terrier | 1.114960e-01 | True | Lakeland_terrier | 1.049390e-01 | True |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | Pomeranian | 0.943331 | True | Shetland_sheepdog | 2.367510e-02 | True | chow | 7.164950e-03 | True |
| 780 | 689977555533848577 | https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg | 1 | cowboy_hat | 0.291081 | False | Labrador_retriever | 1.796250e-01 | True | sombrero | 1.214930e-01 | False |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | standard_poodle | 0.444499 | True | English_springer | 1.298300e-01 | True | pug | 7.380570e-02 | True |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | Samoyed | 0.270287 | True | Great_Pyrenees | 1.140270e-01 | True | teddy | 7.247480e-02 | False |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | malamute | 0.949609 | True | Siberian_husky | 3.308370e-02 | True | Eskimo_dog | 1.666270e-02 | True |
| 784 | 690021994562220032 | https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg | 1 | badger | 0.289550 | False | weasel | 9.914020e-02 | False | malamute | 4.069580e-02 | True |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | pug | 0.686933 | True | French_bulldog | 7.635870e-02 | True | Brabancon_griffon | 3.500700e-02 | True |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | kuvasz | 0.286345 | True | Labrador_retriever | 1.071440e-01 | True | ice_bear | 8.508580e-02 | False |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | Pembroke | 0.426459 | True | papillon | 3.173680e-01 | True | Shetland_sheepdog | 7.761600e-02 | True |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | Lhasa | 0.097500 | True | koala | 9.193390e-02 | False | sunglasses | 9.150480e-02 | False |
| 790 | 690649993829576704 | https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg | 1 | bighorn | 0.215438 | False | hyena | 1.379280e-01 | False | Mexican_hairless | 9.817080e-02 | True |
| 791 | 690690673629138944 | https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg | 1 | bath_towel | 0.194532 | False | radiator | 1.277760e-01 | False | Maltese_dog | 8.962460e-02 | True |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | kuvasz | 0.422806 | True | golden_retriever | 2.915860e-01 | True | Great_Pyrenees | 7.618920e-02 | True |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | golden_retriever | 0.883229 | True | Labrador_retriever | 1.096350e-01 | True | kuvasz | 2.795070e-03 | True |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | golden_retriever | 0.862964 | True | Labrador_retriever | 4.486530e-02 | True | Saluki | 1.246780e-02 | True |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | borzoi | 0.441269 | True | llama | 2.782700e-01 | False | Arabian_camel | 6.350350e-02 | False |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | Rottweiler | 0.508981 | True | German_shepherd | 2.078970e-01 | True | kelpie | 9.435330e-02 | True |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | Bernese_mountain_dog | 0.767563 | True | Border_collie | 8.580460e-02 | True | EntleBucher | 4.376930e-02 | True |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | Shetland_sheepdog | 0.551206 | True | collie | 2.325440e-01 | True | Border_collie | 9.521820e-02 | True |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | bloodhound | 0.886232 | True | black-and-tan_coonhound | 7.741960e-02 | True | Gordon_setter | 9.826430e-03 | True |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | Chihuahua | 0.182898 | True | teddy | 1.280770e-01 | False | West_Highland_white_terrier | 9.787480e-02 | True |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | Saint_Bernard | 0.342571 | True | boxer | 2.890960e-01 | True | Pembroke | 7.646340e-02 | True |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | Tibetan_terrier | 0.247565 | True | cocker_spaniel | 1.213770e-01 | True | bow_tie | 9.936250e-02 | False |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | toy_poodle | 0.670068 | True | teddy | 1.908980e-01 | False | miniature_poodle | 3.217790e-02 | True |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | pug | 0.956565 | True | swing | 1.890670e-02 | False | toy_poodle | 1.354440e-02 | True |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | Siberian_husky | 0.810592 | True | malamute | 1.197450e-01 | True | Eskimo_dog | 2.926480e-02 | True |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | Siberian_husky | 0.486428 | True | Eskimo_dog | 4.485180e-01 | True | white_wolf | 4.150610e-02 | False |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | pug | 0.413090 | True | French_bulldog | 1.998650e-01 | True | Chihuahua | 8.199060e-02 | True |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | golden_retriever | 0.636845 | True | Labrador_retriever | 1.633620e-01 | True | Pekinese | 4.555400e-02 | True |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhduWkAICSGe.png | 1 | Samoyed | 0.471276 | True | Siberian_husky | 1.588500e-01 | True | Eskimo_dog | 1.386720e-01 | True |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | Samoyed | 0.985857 | True | Arctic_fox | 7.851640e-03 | False | white_wolf | 3.277700e-03 | False |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | German_short-haired_pointer | 0.876977 | True | bluetick | 3.661510e-02 | True | basset | 1.784770e-02 | True |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | soft-coated_wheaten_terrier | 0.403496 | True | cocker_spaniel | 1.351640e-01 | True | golden_retriever | 8.871870e-02 | True |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | Mexican_hairless | 0.162638 | True | Doberman | 1.562870e-01 | True | Rhodesian_ridgeback | 8.147780e-02 | True |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | Saint_Bernard | 0.612635 | True | English_springer | 2.697440e-01 | True | boxer | 4.866550e-02 | True |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | ice_lolly | 0.660099 | False | neck_brace | 3.956290e-02 | False | Yorkshire_terrier | 3.348780e-02 | True |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/693108992730632192/pu/img/ncJQQZf3eroMSF12.jpg | 1 | cocker_spaniel | 0.740013 | True | Welsh_springer_spaniel | 8.873900e-02 | True | golden_retriever | 4.746980e-02 | True |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | Shih-Tzu | 0.697480 | True | Lhasa | 2.001510e-01 | True | Tibetan_terrier | 9.097040e-02 | True |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | vizsla | 0.876413 | True | Chesapeake_Bay_retriever | 7.839980e-02 | True | Rhodesian_ridgeback | 3.219410e-02 | True |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | golden_retriever | 0.989333 | True | Labrador_retriever | 7.946440e-03 | True | kuvasz | 7.489320e-04 | True |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | Labrador_retriever | 0.340008 | True | bull_mastiff | 1.753160e-01 | True | box_turtle | 1.643370e-01 | False |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | malamute | 0.449298 | True | Siberian_husky | 3.850750e-01 | True | Eskimo_dog | 1.634850e-01 | True |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | pug | 0.841987 | True | French_bulldog | 6.979110e-02 | True | Boston_bull | 3.871990e-02 | True |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | Scottish_deerhound | 0.111893 | True | bluetick | 7.430180e-02 | True | German_short-haired_pointer | 6.700040e-02 | True |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | groenendael | 0.550796 | True | Norwegian_elkhound | 1.547700e-01 | True | schipperke | 8.080190e-02 | True |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | Pembroke | 0.769999 | True | Cardigan | 2.292280e-01 | True | Chihuahua | 2.468370e-04 | True |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 8.087000e-02 | True | Shih-Tzu | 7.209880e-02 | True |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | Shih-Tzu | 0.352547 | True | toy_poodle | 1.557200e-01 | True | Maltese_dog | 1.166570e-01 | True |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | boxer | 0.990060 | True | bull_mastiff | 7.436270e-03 | True | Saint_Bernard | 1.617290e-03 | True |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | Australian_terrier | 0.407886 | True | Yorkshire_terrier | 3.281730e-01 | True | silky_terrier | 1.084040e-01 | True |
| 839 | 694356675654983680 | https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg | 1 | hamster | 0.429871 | False | Pomeranian | 1.442720e-01 | True | pretzel | 1.272200e-01 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | Boston_bull | 0.761454 | True | pug | 7.539490e-02 | True | Chihuahua | 4.159780e-02 | True |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/695064251149508610/pu/img/0OPED0aUurb9Z16a.jpg | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | Shih-Tzu | 0.510106 | True | Tibetan_terrier | 7.198090e-02 | True | Lhasa | 6.923100e-02 | True |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | papillon | 0.227784 | True | Chihuahua | 2.181280e-01 | True | Border_collie | 9.345740e-02 | True |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | Maltese_dog | 0.678547 | True | Lhasa | 1.250460e-01 | True | Pekinese | 4.899880e-02 | True |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | pug | 0.997445 | True | bull_mastiff | 1.748550e-03 | True | Pekinese | 3.044040e-04 | True |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | basenji | 0.748904 | True | Cardigan | 1.211020e-01 | True | Pembroke | 1.117670e-01 | True |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | Old_English_sheepdog | 0.693857 | True | otterhound | 2.321170e-01 | True | West_Highland_white_terrier | 1.286670e-02 | True |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | soft-coated_wheaten_terrier | 0.805139 | True | Lakeland_terrier | 1.216620e-01 | True | Afghan_hound | 2.330250e-02 | True |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | Samoyed | 0.962139 | True | Arctic_fox | 3.055280e-02 | False | white_wolf | 1.482340e-03 | False |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | Pomeranian | 0.382234 | True | chow | 2.083020e-01 | True | sunglasses | 1.313280e-01 | False |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | borzoi | 0.132845 | True | Walker_hound | 8.600480e-02 | True | Great_Pyrenees | 6.558230e-02 | True |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | briard | 0.369063 | True | Scotch_terrier | 1.682040e-01 | True | giant_schnauzer | 1.205530e-01 | True |
| 855 | 696713835009417216 | https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg | 1 | car_mirror | 0.379797 | False | Chesapeake_Bay_retriever | 3.215890e-01 | True | vizsla | 1.169310e-01 | True |
| 856 | 696754882863349760 | https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg | 1 | weasel | 0.137832 | False | toy_poodle | 9.837810e-02 | True | Scottish_deerhound | 9.739670e-02 | True |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | kuvasz | 0.383941 | True | golden_retriever | 2.890850e-01 | True | dingo | 5.654810e-02 | False |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | Appenzeller | 0.665628 | True | beagle | 1.047950e-01 | True | Greater_Swiss_Mountain_dog | 6.786800e-02 | True |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | Chihuahua | 0.297735 | True | Pembroke | 2.669530e-01 | True | basenji | 1.368140e-01 | True |
| 861 | 697242256848379904 | https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg | 1 | grey_fox | 0.236031 | False | Siamese_cat | 1.657910e-01 | False | Eskimo_dog | 6.353280e-02 | True |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | Great_Dane | 0.173989 | True | malinois | 1.658880e-01 | True | Doberman | 1.198900e-01 | True |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | Great_Dane | 0.999223 | True | boxer | 1.865250e-04 | True | whippet | 1.510710e-04 | True |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | toy_poodle | 0.880014 | True | miniature_poodle | 1.001360e-01 | True | Norfolk_terrier | 7.027060e-03 | True |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | Labrador_retriever | 0.999885 | True | golden_retriever | 9.758170e-05 | True | pug | 8.267760e-06 | True |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 867 | 697575480820686848 | https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg | 1 | Siamese_cat | 0.256698 | False | whippet | 1.198050e-01 | True | bull_mastiff | 1.025950e-01 | True |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | Shetland_sheepdog | 0.621668 | True | collie | 3.665780e-01 | True | Pembroke | 7.698190e-03 | True |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | Lhasa | 0.521931 | True | Shih-Tzu | 4.034510e-01 | True | Tibetan_terrier | 3.991220e-02 | True |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | Great_Dane | 0.126924 | True | Greater_Swiss_Mountain_dog | 1.100370e-01 | True | German_short-haired_pointer | 9.081600e-02 | True |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | Pembroke | 0.984783 | True | Cardigan | 1.501800e-02 | True | Shetland_sheepdog | 7.358600e-05 | True |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | Staffordshire_bullterrier | 0.280222 | True | Boston_bull | 1.614780e-01 | True | American_Staffordshire_terrier | 1.268840e-01 | True |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | Chesapeake_Bay_retriever | 0.351868 | True | malinois | 2.077530e-01 | True | Labrador_retriever | 1.546060e-01 | True |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | Labrador_retriever | 0.643690 | True | American_Staffordshire_terrier | 1.026840e-01 | True | dalmatian | 5.000780e-02 | True |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | Italian_greyhound | 0.107948 | True | basset | 7.523000e-02 | True | Staffordshire_bullterrier | 6.943610e-02 | True |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/698341973569245184/pu/img/Sj3A2vSfbKWSv61T.jpg | 1 | boxer | 0.883048 | True | Saint_Bernard | 3.057940e-02 | True | Staffordshire_bullterrier | 1.299410e-02 | True |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | pug | 0.990191 | True | Pekinese | 2.798540e-03 | True | sunglasses | 1.309520e-03 | False |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | French_bulldog | 0.998544 | True | Boston_bull | 1.403940e-03 | True | boxer | 2.322000e-05 | True |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/698635005506015234/pu/img/wQ4yFXTZ-2QLt68b.jpg | 1 | Samoyed | 0.158464 | True | kuvasz | 8.940250e-02 | True | West_Highland_white_terrier | 2.503730e-02 | True |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | Brittany_spaniel | 0.931963 | True | Welsh_springer_spaniel | 3.069490e-02 | True | beagle | 1.289610e-02 | True |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | Samoyed | 0.329895 | True | shoji | 1.657720e-01 | False | prison | 1.035960e-01 | False |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 5.557720e-03 | True | curly-coated_retriever | 3.322210e-03 | True |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | Italian_greyhound | 0.382378 | True | redbone | 1.022550e-01 | True | shower_cap | 7.683370e-02 | False |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | Norfolk_terrier | 0.246340 | True | Irish_terrier | 2.433490e-01 | True | golden_retriever | 8.587100e-02 | True |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | Chihuahua | 0.222943 | True | toyshop | 1.799380e-01 | False | Weimaraner | 1.630330e-01 | True |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg | 1 | Shih-Tzu | 0.599587 | True | Pekinese | 2.130690e-01 | True | Maltese_dog | 1.542930e-01 | True |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | schipperke | 0.667324 | True | Chesapeake_Bay_retriever | 1.195500e-01 | True | kelpie | 9.759950e-02 | True |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | Labrador_retriever | 0.309696 | True | doormat | 3.037000e-01 | False | sliding_door | 7.726600e-02 | False |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | cairn | 0.337557 | True | Chihuahua | 2.091300e-01 | True | Border_terrier | 1.369460e-01 | True |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | Samoyed | 0.517479 | True | malamute | 1.559350e-01 | True | Eskimo_dog | 9.500090e-02 | True |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | pug | 0.997860 | True | French_bulldog | 1.824860e-03 | True | bull_mastiff | 2.989400e-04 | True |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | golden_retriever | 0.836572 | True | kuvasz | 1.059460e-01 | True | Labrador_retriever | 2.514390e-02 | True |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | Pembroke | 0.969400 | True | Cardigan | 2.605880e-02 | True | Chihuahua | 3.505470e-03 | True |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | Dandie_Dinmont | 0.271683 | True | Old_English_sheepdog | 1.649310e-01 | True | otterhound | 1.059180e-01 | True |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | malinois | 0.706038 | True | German_shepherd | 1.656550e-01 | True | Great_Dane | 5.904750e-02 | True |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | Border_terrier | 0.355060 | True | toy_poodle | 1.697360e-01 | True | Norwegian_elkhound | 9.988370e-02 | True |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | golden_retriever | 0.808978 | True | Irish_setter | 4.242810e-02 | True | Labrador_retriever | 2.353640e-02 | True |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | Chihuahua | 0.369488 | True | schipperke | 2.433670e-01 | True | pug | 1.616140e-01 | True |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | West_Highland_white_terrier | 0.726571 | True | Maltese_dog | 1.768280e-01 | True | Dandie_Dinmont | 7.013380e-02 | True |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | golden_retriever | 0.532460 | True | crossword_puzzle | 1.037960e-01 | False | binder | 1.003710e-01 | False |
| 905 | 700151421916807169 | https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg | 1 | tennis_ball | 0.328236 | False | Italian_greyhound | 1.768380e-01 | True | Staffordshire_bullterrier | 1.340800e-01 | True |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | beagle | 0.162585 | True | Pembroke | 1.204810e-01 | True | Siberian_husky | 1.102840e-01 | True |
| 907 | 700462010979500032 | https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg | 1 | hamster | 0.678651 | False | Pomeranian | 1.102680e-01 | True | Angora | 1.041390e-01 | False |
| 908 | 700505138482569216 | https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg | 1 | bath_towel | 0.449684 | False | Norwegian_elkhound | 1.602050e-01 | True | Great_Dane | 4.866580e-02 | True |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | American_Staffordshire_terrier | 0.569501 | True | Staffordshire_bullterrier | 2.113080e-01 | True | Chihuahua | 1.218390e-01 | True |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | Great_Pyrenees | 0.481333 | True | Samoyed | 3.117690e-01 | True | Maltese_dog | 7.496210e-02 | True |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | Rhodesian_ridgeback | 0.252514 | True | redbone | 1.530050e-01 | True | whippet | 1.351990e-01 | True |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | kuvasz | 0.805857 | True | Great_Pyrenees | 1.872720e-01 | True | Samoyed | 3.490900e-03 | True |
| 914 | 700890391244103680 | https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg | 1 | white_wolf | 0.166563 | False | schipperke | 1.223560e-01 | True | West_Highland_white_terrier | 1.192470e-01 | True |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | Border_collie | 0.280893 | True | Cardigan | 1.125500e-01 | True | toy_terrier | 5.331720e-02 | True |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | Yorkshire_terrier | 0.907990 | True | silky_terrier | 7.688290e-02 | True | Australian_terrier | 8.472760e-03 | True |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | Chihuahua | 0.993661 | True | Pembroke | 1.504870e-03 | True | toy_terrier | 8.666070e-04 | True |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | French_bulldog | 0.902856 | True | Staffordshire_bullterrier | 2.263410e-02 | True | soap_dispenser | 1.197320e-02 | False |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | toy_poodle | 0.331707 | True | miniature_poodle | 2.724850e-01 | True | standard_poodle | 1.694150e-01 | True |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | Pomeranian | 0.491022 | True | weasel | 1.308790e-01 | False | Yorkshire_terrier | 9.924100e-02 | True |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | golden_retriever | 0.242419 | True | chow | 2.268000e-01 | True | cocker_spaniel | 1.940860e-01 | True |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | Boston_bull | 0.697303 | True | French_bulldog | 2.390150e-01 | True | American_Staffordshire_terrier | 1.983810e-02 | True |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | West_Highland_white_terrier | 0.769159 | True | Scotch_terrier | 6.436880e-02 | True | Old_English_sheepdog | 4.376340e-02 | True |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | Pomeranian | 0.714367 | True | Shih-Tzu | 4.057410e-02 | True | silky_terrier | 3.251050e-02 | True |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | kelpie | 0.219179 | True | badger | 1.335840e-01 | False | Siamese_cat | 7.444000e-02 | False |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | bloodhound | 0.381227 | True | Sussex_spaniel | 2.120170e-01 | True | clumber | 1.286220e-01 | True |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | golden_retriever | 0.514085 | True | Chesapeake_Bay_retriever | 1.732240e-01 | True | Brittany_spaniel | 1.183840e-01 | True |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | Pembroke | 0.778503 | True | Shetland_sheepdog | 9.383390e-02 | True | Cardigan | 6.029640e-02 | True |
| 932 | 703268521220972544 | https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg | 1 | wool | 0.525434 | False | fur_coat | 2.363910e-01 | False | kuvasz | 3.824300e-02 | True |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | Border_collie | 0.894842 | True | collie | 9.736370e-02 | True | English_springer | 3.036740e-03 | True |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | golden_retriever | 0.945664 | True | standard_poodle | 1.439200e-02 | True | Tibetan_mastiff | 1.202170e-02 | True |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | miniature_pinscher | 0.292866 | True | sleeping_bag | 1.421220e-01 | False | Italian_greyhound | 7.084900e-02 | True |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | Pembroke | 0.756441 | True | basenji | 1.266210e-01 | True | Cardigan | 8.011670e-02 | True |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | boxer | 0.838994 | True | Greater_Swiss_Mountain_dog | 8.880030e-02 | True | bull_mastiff | 3.168390e-02 | True |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | Labrador_retriever | 0.990119 | True | Chesapeake_Bay_retriever | 8.025580e-03 | True | curly-coated_retriever | 1.242290e-03 | True |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | Great_Pyrenees | 0.667939 | True | kuvasz | 2.287640e-01 | True | golden_retriever | 4.388540e-02 | True |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | teddy | 0.233378 | False | feather_boa | 8.847440e-02 | False | Brittany_spaniel | 8.291730e-02 | True |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | Pembroke | 0.980695 | True | Cardigan | 1.850440e-02 | True | Chihuahua | 2.152930e-04 | True |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | Samoyed | 0.979206 | True | Pomeranian | 7.185400e-03 | True | Arctic_fox | 6.438090e-03 | False |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | Chihuahua | 0.376541 | True | Siamese_cat | 9.805710e-02 | False | Labrador_retriever | 8.521090e-02 | True |
| 947 | 704761120771465216 | https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg | 1 | Siamese_cat | 0.202294 | False | Chihuahua | 1.004180e-01 | True | basenji | 7.209650e-02 | True |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | golden_retriever | 0.857240 | True | Labrador_retriever | 1.354600e-01 | True | Tibetan_mastiff | 1.903320e-03 | True |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | pug | 0.284428 | True | teddy | 1.563390e-01 | False | mitten | 1.389150e-01 | False |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | Norfolk_terrier | 0.689504 | True | soft-coated_wheaten_terrier | 1.014800e-01 | True | Norwich_terrier | 5.577850e-02 | True |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | Airedale | 0.868658 | True | Irish_terrier | 2.758710e-02 | True | otterhound | 2.532360e-02 | True |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | collie | 0.457672 | True | chow | 2.791010e-01 | True | Pomeranian | 7.692230e-02 | True |
| 954 | 705223444686888960 | https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg | 1 | Egyptian_cat | 0.090508 | False | Chesapeake_Bay_retriever | 7.737330e-02 | True | Mexican_hairless | 4.947150e-02 | True |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | Chihuahua | 0.157950 | True | toy_terrier | 8.992030e-02 | True | Mexican_hairless | 6.322450e-02 | True |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | Chihuahua | 0.774792 | True | quilt | 7.307940e-02 | False | Pembroke | 2.236510e-02 | True |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | Great_Pyrenees | 0.309106 | True | kuvasz | 2.245560e-01 | True | seat_belt | 2.021000e-01 | False |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | golden_retriever | 0.908784 | True | Labrador_retriever | 3.036120e-02 | True | tennis_ball | 4.995620e-03 | False |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | basenji | 0.877207 | True | Italian_greyhound | 4.785420e-02 | True | miniature_pinscher | 3.563810e-02 | True |
| 960 | 705786532653883392 | https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg | 1 | web_site | 0.550294 | False | Labrador_retriever | 1.484960e-01 | True | golden_retriever | 1.484820e-01 | True |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | collie | 0.808276 | True | Border_collie | 5.943700e-02 | True | groenendael | 2.672030e-02 | True |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | golden_retriever | 0.776346 | True | Labrador_retriever | 1.124130e-01 | True | chow | 3.695290e-02 | True |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | Staffordshire_bullterrier | 0.587764 | True | American_Staffordshire_terrier | 2.814290e-01 | True | bull_mastiff | 9.479810e-02 | True |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | Samoyed | 0.430418 | True | kuvasz | 2.796000e-01 | True | Great_Pyrenees | 1.174800e-01 | True |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | papillon | 0.743715 | True | Pekinese | 1.140420e-01 | True | Saint_Bernard | 4.771520e-02 | True |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | Border_terrier | 0.587101 | True | bull_mastiff | 1.640870e-01 | True | Staffordshire_bullterrier | 1.050110e-01 | True |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | Pembroke | 0.698165 | True | Chihuahua | 1.058340e-01 | True | bloodhound | 6.203040e-02 | True |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | Tibetan_mastiff | 0.956462 | True | Rottweiler | 2.538090e-02 | True | Appenzeller | 8.679210e-03 | True |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | golden_retriever | 0.772685 | True | Labrador_retriever | 7.166530e-02 | True | golfcart | 2.099310e-02 | False |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | chow | 0.541794 | True | Pembroke | 9.491840e-02 | True | Pomeranian | 8.543940e-02 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 972 | 706644897839910912 | https://pbs.twimg.com/ext_tw_video_thumb/706644797256241152/pu/img/NTqvmIUQExGmKFSR.jpg | 1 | space_heater | 0.137871 | False | Chihuahua | 1.329280e-01 | True | cougar | 1.138660e-01 | False |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | toy_poodle | 0.717584 | True | miniature_poodle | 1.514330e-01 | True | Norwich_terrier | 4.708700e-02 | True |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | Chihuahua | 0.583780 | True | Italian_greyhound | 1.296830e-01 | True | toy_terrier | 8.915270e-02 | True |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | cocker_spaniel | 0.559658 | True | golden_retriever | 3.146730e-01 | True | Pekinese | 6.667170e-02 | True |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | pug | 0.642426 | True | llama | 5.730620e-02 | False | French_bulldog | 5.418650e-02 | True |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | Samoyed | 0.897312 | True | Great_Pyrenees | 3.918020e-02 | True | kuvasz | 1.951600e-02 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 2.015660e-01 | True | black-footed_ferret | 1.015590e-01 | False |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | Bernese_mountain_dog | 0.979235 | True | Shetland_sheepdog | 1.103680e-02 | True | Appenzeller | 3.971110e-03 | True |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | golden_retriever | 0.637225 | True | bloodhound | 9.454210e-02 | True | cocker_spaniel | 6.979710e-02 | True |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | Chihuahua | 0.888468 | True | Italian_greyhound | 8.863460e-02 | True | toy_terrier | 1.593830e-02 | True |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | Lakeland_terrier | 0.738277 | True | Airedale | 2.851490e-02 | True | giant_schnauzer | 2.487630e-02 | True |
| 984 | 707420581654872064 | https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg | 1 | ram | 0.518215 | False | kuvasz | 1.493910e-01 | True | Great_Pyrenees | 1.060030e-01 | True |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | whippet | 0.738371 | True | Italian_greyhound | 1.917890e-01 | True | American_Staffordshire_terrier | 2.012570e-02 | True |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | miniature_pinscher | 0.890426 | True | toy_terrier | 5.133470e-02 | True | Chihuahua | 1.801530e-02 | True |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | toy_poodle | 0.908491 | True | miniature_poodle | 8.265160e-02 | True | teddy | 5.786130e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/708026062568087553/pu/img/rNhylAwIfb6YthGu.jpg | 1 | malinois | 0.786468 | True | Chesapeake_Bay_retriever | 6.897890e-02 | True | Siamese_cat | 2.930440e-02 | False |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | Staffordshire_bullterrier | 0.516106 | True | American_Staffordshire_terrier | 2.360750e-01 | True | kelpie | 6.974950e-02 | True |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | Norwich_terrier | 0.264483 | True | Norfolk_terrier | 2.587860e-01 | True | chow | 9.689870e-02 | True |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | French_bulldog | 0.710354 | True | Chihuahua | 2.623020e-01 | True | Cardigan | 6.903820e-03 | True |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | Cardigan | 0.350993 | True | basset | 1.645550e-01 | True | toy_terrier | 8.048360e-02 | True |
| 996 | 708349470027751425 | https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg | 1 | muzzle | 0.243890 | False | basenji | 1.871580e-01 | True | Boston_bull | 9.272700e-02 | True |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | pug | 0.871283 | True | French_bulldog | 4.182000e-02 | True | bath_towel | 1.522800e-02 | False |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | Chihuahua | 0.748163 | True | toy_terrier | 1.277170e-01 | True | Pembroke | 4.214100e-02 | True |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | Shih-Tzu | 0.218479 | True | Lhasa | 2.019660e-01 | True | Norfolk_terrier | 1.652250e-01 | True |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 5.269460e-02 | True | Labrador_retriever | 1.847740e-02 | True |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | Pomeranian | 0.933457 | True | Samoyed | 5.722080e-02 | True | West_Highland_white_terrier | 9.041510e-04 | True |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | golden_retriever | 0.976139 | True | Labrador_retriever | 1.630090e-02 | True | Norfolk_terrier | 1.871370e-03 | True |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | Eskimo_dog | 0.283945 | True | giant_panda | 2.182520e-01 | False | malamute | 1.804010e-01 | True |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | schipperke | 0.745640 | True | kelpie | 1.678530e-01 | True | Boston_bull | 1.476290e-02 | True |
| 1005 | 709042156699303936 | https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg | 1 | hotdog | 0.826579 | False | Rottweiler | 6.817930e-02 | True | Labrador_retriever | 4.921790e-02 | True |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | Siberian_husky | 0.212957 | True | Eskimo_dog | 1.788870e-01 | True | Labrador_retriever | 1.742180e-01 | True |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | borzoi | 0.490783 | True | wire-haired_fox_terrier | 8.351330e-02 | True | English_setter | 8.318430e-02 | True |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | Chihuahua | 0.948323 | True | Italian_greyhound | 1.773030e-02 | True | quilt | 1.668790e-02 | False |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | Labrador_retriever | 0.271109 | True | Pomeranian | 1.504870e-01 | True | golden_retriever | 1.455780e-01 | True |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | Shetland_sheepdog | 0.797450 | True | collie | 5.405530e-02 | True | keeshond | 3.167330e-02 | True |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | Maltese_dog | 0.780187 | True | Dandie_Dinmont | 7.442870e-02 | True | Norfolk_terrier | 3.377620e-02 | True |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | cocker_spaniel | 0.414982 | True | Newfoundland | 2.254820e-01 | True | flat-coated_retriever | 1.967890e-01 | True |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | golden_retriever | 0.790026 | True | kuvasz | 1.050310e-01 | True | Labrador_retriever | 8.705120e-02 | True |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | chow | 0.999837 | True | Tibetan_mastiff | 1.169070e-04 | True | Australian_terrier | 1.133840e-05 | True |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | Chihuahua | 0.945629 | True | Pomeranian | 1.920360e-02 | True | West_Highland_white_terrier | 1.013420e-02 | True |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | Pembroke | 0.956222 | True | Cardigan | 2.072730e-02 | True | Chihuahua | 7.912180e-03 | True |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | toy_poodle | 0.802092 | True | miniature_poodle | 1.116470e-01 | True | cocker_spaniel | 6.286620e-02 | True |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | Pekinese | 0.953170 | True | papillon | 1.951690e-02 | True | Japanese_spaniel | 5.820510e-03 | True |
| 1020 | 710153181850935296 | https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg | 2 | cowboy_hat | 0.979053 | False | sombrero | 1.068250e-02 | False | cocker_spaniel | 2.712960e-03 | True |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | pug | 0.415495 | True | German_shepherd | 1.781570e-01 | True | Labrador_retriever | 1.002020e-01 | True |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | Old_English_sheepdog | 0.586307 | True | wire-haired_fox_terrier | 1.186220e-01 | True | Lakeland_terrier | 1.068060e-01 | True |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | Shih-Tzu | 0.932401 | True | Lhasa | 3.080570e-02 | True | Tibetan_terrier | 8.974280e-03 | True |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | Pembroke | 0.982004 | True | Cardigan | 8.943470e-03 | True | malamute | 7.549900e-03 | True |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | soft-coated_wheaten_terrier | 0.948617 | True | Dandie_Dinmont | 1.866440e-02 | True | cairn | 1.594270e-02 | True |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | Pembroke | 0.803742 | True | Cardigan | 1.897120e-01 | True | German_shepherd | 1.746090e-03 | True |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | dingo | 0.536593 | False | Pembroke | 2.004070e-01 | True | basenji | 6.073450e-02 | True |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | malamute | 0.281260 | True | Eskimo_dog | 2.326410e-01 | True | Pembroke | 9.160200e-02 | True |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | French_bulldog | 0.731405 | True | Boston_bull | 1.506720e-01 | True | pug | 2.181090e-02 | True |
| 1030 | 711306686208872448 | https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg | 1 | leatherback_turtle | 0.280835 | False | loggerhead | 1.232900e-01 | False | Dandie_Dinmont | 8.679250e-02 | True |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | Pembroke | 0.750906 | True | Cardigan | 2.411520e-01 | True | basenji | 2.639620e-03 | True |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | dingo | 0.366875 | False | Ibizan_hound | 3.349290e-01 | True | Eskimo_dog | 7.387620e-02 | True |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | Lakeland_terrier | 0.459515 | True | miniature_poodle | 2.196610e-01 | True | standard_poodle | 1.301890e-01 | True |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1037 | 711998809858043904 | https://pbs.twimg.com/tweet_video_thumb/CeGGkWuUUAAYWU1.jpg | 1 | comic_book | 0.105171 | False | kuvasz | 5.989510e-02 | True | book_jacket | 4.663810e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | Shih-Tzu | 0.625129 | True | Tibetan_terrier | 1.268970e-01 | True | Lhasa | 1.196630e-01 | True |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | Labrador_retriever | 0.720481 | True | whippet | 4.803180e-02 | True | Chesapeake_Bay_retriever | 4.504640e-02 | True |
| 1042 | 712438159032893441 | https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg | 1 | ice_bear | 0.869477 | False | Great_Pyrenees | 6.945700e-02 | True | Labrador_retriever | 2.474000e-02 | True |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | Labrador_retriever | 0.829058 | True | golden_retriever | 3.866450e-02 | True | Chihuahua | 2.622140e-02 | True |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | Great_Pyrenees | 0.732043 | True | kuvasz | 1.213750e-01 | True | Irish_wolfhound | 4.952370e-02 | True |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1046 | 713175907180089344 | https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg | 1 | timber_wolf | 0.503788 | False | malamute | 4.306240e-01 | True | Siberian_husky | 2.845420e-02 | True |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | whippet | 0.734244 | True | basenji | 2.594800e-02 | True | Great_Dane | 2.587430e-02 | True |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | Great_Pyrenees | 0.720337 | True | Samoyed | 1.295420e-01 | True | kuvasz | 1.224510e-01 | True |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | Brittany_spaniel | 0.797936 | True | English_springer | 4.471820e-02 | True | Welsh_springer_spaniel | 3.791070e-02 | True |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | golden_retriever | 0.371816 | True | cocker_spaniel | 1.774130e-01 | True | Irish_setter | 9.272520e-02 | True |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | Siberian_husky | 0.463223 | True | Eskimo_dog | 3.899590e-01 | True | malamute | 9.796270e-02 | True |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | Labrador_retriever | 0.586951 | True | golden_retriever | 3.788120e-01 | True | redbone | 3.604890e-03 | True |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | pug | 0.533967 | True | bloodhound | 1.648260e-01 | True | German_shepherd | 4.652400e-02 | True |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | soft-coated_wheaten_terrier | 0.751962 | True | Bedlington_terrier | 1.756520e-01 | True | Great_Pyrenees | 1.145240e-02 | True |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | collie | 0.176758 | True | Chesapeake_Bay_retriever | 1.018340e-01 | True | beagle | 1.012940e-01 | True |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | Norfolk_terrier | 0.293007 | True | Labrador_retriever | 2.561980e-01 | True | golden_retriever | 1.296430e-01 | True |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | Great_Pyrenees | 0.251516 | True | Samoyed | 1.393460e-01 | True | kuvasz | 1.290050e-01 | True |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | Brittany_spaniel | 0.944376 | True | beagle | 2.543530e-02 | True | Ibizan_hound | 9.962040e-03 | True |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | dingo | 0.310903 | False | Chihuahua | 1.422880e-01 | True | Cardigan | 1.039450e-01 | True |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | Chihuahua | 0.956787 | True | beagle | 8.382870e-03 | True | Labrador_retriever | 8.344090e-03 | True |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | Chihuahua | 0.584026 | True | Italian_greyhound | 3.770770e-01 | True | Boston_bull | 1.740040e-02 | True |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | West_Highland_white_terrier | 0.597111 | True | soft-coated_wheaten_terrier | 1.429930e-01 | True | Lakeland_terrier | 1.367120e-01 | True |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | golden_retriever | 0.990715 | True | Labrador_retriever | 2.228340e-03 | True | chow | 1.197150e-03 | True |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | Staffordshire_bullterrier | 0.427836 | True | pug | 2.214090e-01 | True | French_bulldog | 1.321350e-01 | True |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | Dandie_Dinmont | 0.740229 | True | miniature_poodle | 8.191510e-02 | True | toy_poodle | 6.374850e-02 | True |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | pug | 0.976685 | True | French_bulldog | 1.966260e-02 | True | bull_mastiff | 2.278190e-03 | True |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | golden_retriever | 0.638625 | True | chow | 2.547170e-01 | True | Tibetan_mastiff | 7.173170e-02 | True |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | Yorkshire_terrier | 0.430420 | True | silky_terrier | 1.967690e-01 | True | cairn | 7.267610e-02 | True |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | Siberian_husky | 0.396495 | True | malamute | 3.170530e-01 | True | Eskimo_dog | 2.734190e-01 | True |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | Pomeranian | 0.468751 | True | seat_belt | 1.546520e-01 | False | golden_retriever | 1.250170e-01 | True |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | malinois | 0.619577 | True | Leonberg | 1.180890e-01 | True | bull_mastiff | 6.650780e-02 | True |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | Siberian_husky | 0.506154 | True | Eskimo_dog | 2.696560e-01 | True | malamute | 6.065850e-02 | True |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | golden_retriever | 0.983548 | True | Labrador_retriever | 1.218540e-02 | True | cocker_spaniel | 2.412030e-03 | True |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | miniature_pinscher | 0.286479 | True | Italian_greyhound | 8.413390e-02 | True | beagle | 6.469700e-02 | True |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | golden_retriever | 0.779356 | True | Labrador_retriever | 5.251140e-02 | True | kuvasz | 4.981050e-02 | True |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | Brittany_spaniel | 0.922876 | True | English_springer | 7.011350e-02 | True | bath_towel | 2.560790e-03 | False |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | malamute | 0.370152 | True | Siberian_husky | 3.563980e-01 | True | Eskimo_dog | 2.710420e-01 | True |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | Chihuahua | 0.354488 | True | carton | 1.596720e-01 | False | Siberian_husky | 5.749830e-02 | True |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1083 | 718460005985447936 | https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg | 1 | badger | 0.356946 | False | Boston_bull | 2.527810e-01 | True | kelpie | 1.134330e-01 | True |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | Maltese_dog | 0.632289 | True | West_Highland_white_terrier | 1.870550e-01 | True | cairn | 4.441290e-02 | True |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | Labrador_retriever | 0.584580 | True | German_short-haired_pointer | 3.406570e-01 | True | Chesapeake_Bay_retriever | 3.197510e-02 | True |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | Pomeranian | 0.993718 | True | Pekinese | 3.610830e-03 | True | Persian_cat | 5.248230e-04 | False |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | Pembroke | 0.766327 | True | Cardigan | 2.221260e-01 | True | toilet_tissue | 6.757230e-03 | False |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | golden_retriever | 0.140394 | True | Saint_Bernard | 1.187690e-01 | True | Labrador_retriever | 7.549170e-02 | True |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | Dandie_Dinmont | 0.224415 | True | miniature_poodle | 2.048820e-01 | True | Norfolk_terrier | 9.063290e-02 | True |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | golden_retriever | 0.765778 | True | borzoi | 7.114810e-02 | True | Leonberg | 7.037050e-02 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 5.097100e-02 | True | Tibetan_terrier | 4.775940e-02 | True |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | malamute | 0.873233 | True | Siberian_husky | 7.643540e-02 | True | Eskimo_dog | 3.574500e-02 | True |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | golden_retriever | 0.605304 | True | cocker_spaniel | 1.309480e-01 | True | Labrador_retriever | 9.469160e-02 | True |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | Samoyed | 0.954517 | True | Eskimo_dog | 2.912960e-02 | True | white_wolf | 4.462030e-03 | False |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | Mexican_hairless | 0.451852 | True | redbone | 2.548840e-01 | True | Italian_greyhound | 9.481810e-02 | True |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | Pembroke | 0.873977 | True | Cardigan | 4.333850e-02 | True | Eskimo_dog | 1.919710e-02 | True |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | Rottweiler | 0.990312 | True | black-and-tan_coonhound | 2.494780e-03 | True | American_black_bear | 1.733120e-03 | False |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | Newfoundland | 0.489970 | True | groenendael | 1.744970e-01 | True | giant_schnauzer | 7.906670e-02 | True |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | Chihuahua | 0.896422 | True | dingo | 2.792940e-02 | False | kelpie | 1.791580e-02 | True |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | Samoyed | 0.950053 | True | washbasin | 6.321390e-03 | False | tub | 6.243350e-03 | False |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | Pomeranian | 0.997750 | True | Chihuahua | 1.248000e-03 | True | Pekinese | 7.750020e-04 | True |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | Labrador_retriever | 0.530915 | True | golden_retriever | 2.882300e-01 | True | chow | 4.485370e-02 | True |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | Great_Dane | 0.246762 | True | Greater_Swiss_Mountain_dog | 1.261310e-01 | True | Weimaraner | 8.529690e-02 | True |
| 1106 | 723179728551723008 | https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg | 1 | tennis_ball | 0.176495 | False | badger | 5.990520e-02 | False | Norwegian_elkhound | 5.685050e-02 | True |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | golden_retriever | 0.839390 | True | Labrador_retriever | 6.570580e-02 | True | hand_blower | 1.294100e-02 | False |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | teddy | 0.263256 | False | chow | 8.901020e-02 | True | Irish_terrier | 6.530570e-02 | True |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | Samoyed | 0.991772 | True | Pomeranian | 3.626380e-03 | True | chow | 2.231830e-03 | True |
| 1110 | 724004602748780546 | https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg | 3 | Siamese_cat | 0.950526 | False | pug | 1.887690e-02 | True | quilt | 7.627600e-03 | False |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | boxer | 0.826272 | True | bull_mastiff | 1.585950e-01 | True | Great_Dane | 1.185860e-02 | True |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | Border_collie | 0.581835 | True | collie | 3.445880e-01 | True | Shetland_sheepdog | 4.358420e-02 | True |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | golden_retriever | 0.240695 | True | cocker_spaniel | 2.024440e-01 | True | feather_boa | 1.593480e-01 | False |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | German_short-haired_pointer | 0.835491 | True | bluetick | 5.878800e-02 | True | English_setter | 3.720830e-02 | True |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | golden_retriever | 0.675750 | True | Great_Pyrenees | 9.516790e-02 | True | cocker_spaniel | 7.604290e-02 | True |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | boxer | 0.599076 | True | bull_mastiff | 1.773180e-01 | True | French_bulldog | 1.414610e-01 | True |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | chow | 0.335761 | True | Samoyed | 1.671730e-01 | True | kuvasz | 1.457150e-01 | True |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | standard_poodle | 0.261112 | True | cocker_spaniel | 9.478520e-02 | True | bucket | 6.994640e-02 | False |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | miniature_pinscher | 0.255327 | True | Border_terrier | 1.812790e-01 | True | Labrador_retriever | 1.251850e-01 | True |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | soft-coated_wheaten_terrier | 0.515919 | True | Irish_terrier | 1.626550e-01 | True | Chesapeake_Bay_retriever | 1.251820e-01 | True |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | teddy | 0.821615 | False | toy_poodle | 8.374900e-02 | True | Lakeland_terrier | 3.331800e-02 | True |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | flat-coated_retriever | 0.656463 | True | Great_Dane | 8.476580e-02 | True | Labrador_retriever | 5.890850e-02 | True |
| 1124 | 727286334147182592 | https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg | 1 | bonnet | 0.146440 | False | sock | 8.309100e-02 | False | Chihuahua | 7.055420e-02 | True |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | toy_poodle | 0.827469 | True | miniature_poodle | 1.607600e-01 | True | Tibetan_terrier | 1.730750e-03 | True |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | Pomeranian | 0.958834 | True | Chihuahua | 2.409920e-02 | True | chow | 3.941050e-03 | True |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | Great_Pyrenees | 0.457164 | True | kuvasz | 3.917100e-01 | True | Labrador_retriever | 9.452260e-02 | True |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | Border_collie | 0.462408 | True | collie | 2.145560e-01 | True | Eskimo_dog | 3.560360e-02 | True |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | cocker_spaniel | 0.384559 | True | golden_retriever | 9.166100e-02 | True | sandbar | 8.179890e-02 | False |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 2.486640e-01 | True | Shih-Tzu | 1.110150e-01 | True |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | Newfoundland | 0.255971 | True | groenendael | 1.755830e-01 | True | German_shepherd | 1.641350e-01 | True |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | collie | 0.266414 | True | Great_Pyrenees | 1.385460e-01 | True | keeshond | 1.090140e-01 | True |
| 1133 | 728409960103686147 | https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg | 1 | Siamese_cat | 0.478278 | False | Saint_Bernard | 9.424560e-02 | True | king_penguin | 8.215670e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | Saint_Bernard | 0.482050 | True | collie | 2.027400e-01 | True | borzoi | 3.797580e-02 | True |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | Pembroke | 0.939134 | True | Cardigan | 5.433560e-02 | True | Chihuahua | 5.590290e-03 | True |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | Maltese_dog | 0.952070 | True | toy_poodle | 2.727060e-02 | True | miniature_poodle | 4.874360e-03 | True |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | German_shepherd | 0.829307 | True | Doberman | 2.250000e-02 | True | basenji | 2.119010e-02 | True |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | kelpie | 0.218408 | True | Arabian_camel | 1.143680e-01 | False | coyote | 9.640930e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/729838572744912896/pu/img/RIl-XYmRxW-YLFSV.jpg | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | pug | 0.341663 | True | Norwegian_elkhound | 1.712220e-01 | True | German_shepherd | 1.246870e-01 | True |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | Eskimo_dog | 0.682082 | True | Siberian_husky | 2.892880e-01 | True | Staffordshire_bullterrier | 8.770690e-03 | True |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | American_Staffordshire_terrier | 0.810158 | True | Labrador_retriever | 5.820500e-02 | True | Weimaraner | 2.792950e-02 | True |
| 1147 | 730924654643314689 | https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg | 1 | polecat | 0.185382 | False | mink | 1.052820e-01 | False | Newfoundland | 8.624110e-02 | True |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | Pembroke | 0.967103 | True | Cardigan | 2.112640e-02 | True | Chihuahua | 2.231070e-03 | True |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1151 | 732375214819057664 | https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg | 1 | tennis_ball | 0.998673 | False | basset | 5.470530e-04 | True | golden_retriever | 3.599800e-04 | True |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | Staffordshire_bullterrier | 0.843359 | True | American_Staffordshire_terrier | 2.829030e-02 | True | miniature_pinscher | 1.679290e-02 | True |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | Pomeranian | 0.961902 | True | Samoyed | 2.428930e-02 | True | chow | 5.771780e-03 | True |
| 1154 | 732732193018155009 | https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg | 1 | koala | 0.162935 | False | Staffordshire_bullterrier | 1.279690e-01 | True | mongoose | 9.642100e-02 | False |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | chow | 0.931275 | True | beaver | 2.883110e-02 | False | dhole | 1.737900e-02 | False |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | French_bulldog | 0.619382 | True | computer_keyboard | 1.422740e-01 | False | mouse | 5.850470e-02 | False |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | Lhasa | 0.457356 | True | Shih-Tzu | 3.712820e-01 | True | Tibetan_terrier | 4.835900e-02 | True |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | beagle | 0.472324 | True | Walker_hound | 1.217790e-01 | True | Saint_Bernard | 1.146400e-01 | True |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | Siberian_husky | 0.304902 | True | Eskimo_dog | 1.551470e-01 | True | malamute | 5.094240e-02 | True |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | golden_retriever | 0.883991 | True | chow | 2.354160e-02 | True | Labrador_retriever | 1.605590e-02 | True |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | Maltese_dog | 0.847292 | True | feather_boa | 5.937860e-02 | False | Old_English_sheepdog | 5.275800e-02 | True |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | Walker_hound | 0.413535 | True | beagle | 2.338910e-01 | True | English_foxhound | 1.649430e-01 | True |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | Staffordshire_bullterrier | 0.523191 | True | French_bulldog | 3.511040e-01 | True | doormat | 2.807530e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | pug | 0.891871 | True | goose | 1.437660e-02 | False | fur_coat | 8.451430e-03 | False |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | Pembroke | 0.462594 | True | seat_belt | 2.618540e-01 | False | Cardigan | 1.516980e-01 | True |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | cocker_spaniel | 0.961643 | True | toy_poodle | 1.154690e-02 | True | soft-coated_wheaten_terrier | 4.903330e-03 | True |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | golden_retriever | 0.553901 | True | Labrador_retriever | 1.194750e-01 | True | bluetick | 7.747500e-02 | True |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | Labrador_retriever | 0.399217 | True | West_Highland_white_terrier | 1.377100e-01 | True | cocker_spaniel | 6.203270e-02 | True |
| 1171 | 736365877722001409 | https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg | 3 | cup | 0.473555 | False | toy_poodle | 8.260600e-02 | True | consomme | 4.829800e-02 | False |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | schipperke | 0.545502 | True | groenendael | 2.986220e-01 | True | Labrador_retriever | 3.098640e-02 | True |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/737310236135043073/pu/img/_lG4DXmH-_XEq7Rc.jpg | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | Samoyed | 0.400568 | True | Pomeranian | 3.312680e-01 | True | Maltese_dog | 4.542610e-02 | True |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | Pembroke | 0.935307 | True | Cardigan | 4.987420e-02 | True | Chihuahua | 1.160320e-02 | True |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | malamute | 0.374682 | True | Norwegian_elkhound | 3.348530e-01 | True | limousine | 6.817320e-02 | False |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | vizsla | 0.990391 | True | Rhodesian_ridgeback | 5.604740e-03 | True | Chesapeake_Bay_retriever | 2.869360e-03 | True |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | pug | 0.751758 | True | tub | 1.107480e-01 | False | bathtub | 1.041320e-01 | False |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | keeshond | 0.878886 | True | Norwegian_elkhound | 8.665940e-02 | True | malamute | 2.128030e-02 | True |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | Bedlington_terrier | 0.289471 | True | standard_poodle | 1.736850e-01 | True | Great_Pyrenees | 1.570810e-01 | True |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | cocker_spaniel | 0.346695 | True | Blenheim_spaniel | 1.939050e-01 | True | Chihuahua | 7.800000e-02 | True |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | chow | 0.808737 | True | gibbon | 2.894240e-02 | False | Pembroke | 2.649790e-02 | True |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | Labrador_retriever | 0.691137 | True | golden_retriever | 1.955580e-01 | True | Chesapeake_Bay_retriever | 1.958490e-02 | True |
| 1185 | 738885046782832640 | https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg | 1 | bath_towel | 0.878320 | False | swab | 2.063330e-02 | False | American_Staffordshire_terrier | 1.553510e-02 | True |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/739238016737267712/pu/img/-tLpyiuIzD5zR1et.jpg | 1 | Eskimo_dog | 0.503372 | True | Siberian_husky | 3.904130e-01 | True | malamute | 8.090120e-02 | True |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | Walker_hound | 0.640256 | True | English_foxhound | 2.297990e-01 | True | beagle | 3.775400e-02 | True |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | Blenheim_spaniel | 0.933755 | True | cocker_spaniel | 4.171940e-02 | True | Brittany_spaniel | 6.712560e-03 | True |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | toy_poodle | 0.342397 | True | table_lamp | 1.044510e-01 | False | miniature_poodle | 7.987100e-02 | True |
| 1191 | 739932936087216128 | https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg | 1 | redbone | 0.243904 | True | beagle | 2.109750e-01 | True | vizsla | 7.644300e-02 | True |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | Irish_water_spaniel | 0.285800 | True | wig | 2.406530e-01 | False | toy_poodle | 7.491390e-02 | True |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | Chesapeake_Bay_retriever | 0.586414 | True | Labrador_retriever | 1.897820e-01 | True | vizsla | 6.760720e-02 | True |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | golden_retriever | 0.863687 | True | kuvasz | 4.859010e-02 | True | Labrador_retriever | 4.739660e-02 | True |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | golden_retriever | 0.807644 | True | kuvasz | 1.012860e-01 | True | Labrador_retriever | 2.378530e-02 | True |
| 1197 | 740676976021798912 | https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg | 1 | wombat | 0.462952 | False | Norwegian_elkhound | 2.752250e-01 | True | Siamese_cat | 4.355930e-02 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | toy_poodle | 0.388277 | True | Angora | 1.802640e-01 | False | Persian_cat | 4.965610e-02 | False |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | malamute | 0.454363 | True | Samoyed | 2.159670e-01 | True | Siberian_husky | 7.750030e-02 | True |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | Chihuahua | 0.768156 | True | pug | 1.490160e-02 | True | Pekinese | 1.281580e-02 | True |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | Chesapeake_Bay_retriever | 0.292675 | True | redbone | 1.978580e-01 | True | vizsla | 1.503120e-01 | True |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | Labrador_retriever | 0.786089 | True | flat-coated_retriever | 4.865240e-02 | True | Chesapeake_Bay_retriever | 3.469330e-02 | True |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | kuvasz | 0.311325 | True | French_bulldog | 1.153490e-01 | True | Labrador_retriever | 6.853350e-02 | True |
| 1206 | 742150209887731712 | https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg | 1 | Siamese_cat | 0.112413 | False | French_bulldog | 7.141440e-02 | True | hog | 6.246540e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | Cardigan | 0.566911 | True | Border_collie | 1.175660e-01 | True | Appenzeller | 4.766400e-02 | True |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | golden_retriever | 0.930705 | True | Chesapeake_Bay_retriever | 2.593410e-02 | True | Labrador_retriever | 7.535360e-03 | True |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | kuvasz | 0.350629 | True | soft-coated_wheaten_terrier | 1.827820e-01 | True | golden_retriever | 8.766240e-02 | True |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | malamute | 0.442612 | True | Siberian_husky | 3.681370e-01 | True | Eskimo_dog | 1.778220e-01 | True |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/743509040018268160/pu/img/Ol2OgO5f8ciUp80r.jpg | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1216 | 743545585370791937 | https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg | 2 | rapeseed | 0.876875 | False | standard_poodle | 6.058350e-02 | True | Great_Pyrenees | 3.300570e-02 | True |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | Weimaraner | 0.982794 | True | American_Staffordshire_terrier | 4.766400e-03 | True | Great_Dane | 3.432010e-03 | True |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | dalmatian | 0.562315 | True | Great_Dane | 4.164780e-01 | True | German_short-haired_pointer | 8.552360e-03 | True |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | bull_mastiff | 0.975730 | True | Rhodesian_ridgeback | 8.072610e-03 | True | pug | 5.570870e-03 | True |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg | 1 | Labrador_retriever | 0.825333 | True | ice_bear | 4.468080e-02 | False | whippet | 1.844220e-02 | True |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | Samoyed | 0.960543 | True | Pomeranian | 1.219190e-02 | True | white_wolf | 4.752990e-03 | False |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | Shetland_sheepdog | 0.234431 | True | Samoyed | 1.148760e-01 | True | collie | 8.661370e-02 | True |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | toy_poodle | 0.497755 | True | golden_retriever | 2.820170e-01 | True | miniature_poodle | 9.003240e-02 | True |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | Old_English_sheepdog | 0.427481 | True | Shih-Tzu | 1.463360e-01 | True | Tibetan_terrier | 1.342690e-01 | True |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | Shetland_sheepdog | 0.963985 | True | collie | 2.620570e-02 | True | Border_collie | 4.543650e-03 | True |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | Labrador_retriever | 0.663800 | True | golden_retriever | 3.082610e-01 | True | ice_bear | 4.269210e-03 | False |
| 1229 | 745433870967832576 | https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg | 1 | barrow | 0.999962 | False | basset | 1.448950e-05 | True | wok | 6.060880e-06 | False |
| 1230 | 745712589599014916 | https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg | 1 | seat_belt | 0.379055 | False | chow | 6.275450e-02 | True | minibus | 5.242260e-02 | False |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | Pekinese | 0.984267 | True | Shih-Tzu | 8.941660e-03 | True | cocker_spaniel | 1.928260e-03 | True |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | Shetland_sheepdog | 0.433320 | True | collie | 3.359970e-01 | True | borzoi | 1.771790e-01 | True |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | chow | 0.575637 | True | Pomeranian | 1.959500e-01 | True | Norwich_terrier | 1.412240e-01 | True |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | German_shepherd | 0.622957 | True | malinois | 3.388840e-01 | True | wallaby | 2.416150e-02 | False |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | toy_poodle | 0.508292 | True | Lakeland_terrier | 2.344580e-01 | True | affenpinscher | 8.456280e-02 | True |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | golden_retriever | 0.256505 | True | Labrador_retriever | 2.524170e-01 | True | seat_belt | 2.031630e-01 | False |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | Boston_bull | 0.936183 | True | guinea_pig | 1.008400e-02 | False | Cardigan | 1.007700e-02 | True |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | dingo | 0.175518 | False | timber_wolf | 1.336470e-01 | False | Ibizan_hound | 1.015370e-01 | True |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | Pembroke | 0.540201 | True | beagle | 2.078350e-01 | True | Italian_greyhound | 4.356490e-02 | True |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | Labrador_retriever | 0.991954 | True | golden_retriever | 2.228490e-03 | True | doormat | 1.404020e-03 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | Shetland_sheepdog | 0.548018 | True | marmot | 1.655030e-01 | False | collie | 4.300260e-02 | True |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | Cardigan | 0.111493 | True | malinois | 9.508920e-02 | True | German_shepherd | 8.014560e-02 | True |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | basenji | 0.389136 | True | dingo | 2.702260e-01 | False | Chihuahua | 9.893880e-02 | True |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | Chesapeake_Bay_retriever | 0.804363 | True | Weimaraner | 5.443110e-02 | True | Labrador_retriever | 4.326760e-02 | True |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | Pembroke | 0.768923 | True | Chihuahua | 2.905300e-02 | True | Shetland_sheepdog | 2.903540e-02 | True |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | Pembroke | 0.360428 | True | papillon | 2.631340e-01 | True | Chihuahua | 1.312460e-01 | True |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | kuvasz | 0.408450 | True | Samoyed | 1.413300e-01 | True | pug | 8.301840e-02 | True |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | Samoyed | 0.998201 | True | Eskimo_dog | 7.928500e-04 | True | Great_Pyrenees | 2.957500e-04 | True |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | kelpie | 0.307672 | True | Irish_terrier | 1.974860e-01 | True | dingo | 1.054750e-01 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | Shetland_sheepdog | 0.880499 | True | collie | 1.079010e-01 | True | Pembroke | 3.606670e-03 | True |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | borzoi | 0.596455 | True | whippet | 2.314280e-01 | True | Saluki | 5.826140e-02 | True |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/748568890477789184/pu/img/1MzP7FuodJdHw8zA.jpg | 1 | Tibetan_terrier | 0.328161 | True | toy_poodle | 3.048360e-01 | True | miniature_poodle | 7.087840e-02 | True |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 1.609530e-01 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | Pembroke | 0.849029 | True | Cardigan | 8.362880e-02 | True | kelpie | 2.439450e-02 | True |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/748704826305970176/pu/img/QHuadM5eEygfBeOf.jpg | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | borzoi | 0.742912 | True | wire-haired_fox_terrier | 2.040820e-01 | True | English_setter | 2.103230e-02 | True |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | German_short-haired_pointer | 0.742216 | True | bluetick | 1.528100e-01 | True | English_setter | 5.183470e-02 | True |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 1.952230e-02 | True | Samoyed | 6.395620e-03 | True |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | pug | 0.985222 | True | Brabancon_griffon | 3.313660e-03 | True | Pekinese | 2.988880e-03 | True |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg | 1 | wire-haired_fox_terrier | 0.155144 | True | Lakeland_terrier | 1.083820e-01 | True | buckeye | 7.461670e-02 | False |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | Pomeranian | 0.973715 | True | chow | 2.075810e-02 | True | keeshond | 3.784360e-03 | True |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | Chesapeake_Bay_retriever | 0.694541 | True | curly-coated_retriever | 7.633530e-02 | True | Irish_water_spaniel | 4.854950e-02 | True |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | papillon | 0.772894 | True | Shetland_sheepdog | 4.240760e-02 | True | collie | 4.231310e-02 | True |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | Pekinese | 0.879012 | True | Chihuahua | 5.485500e-02 | True | Blenheim_spaniel | 2.104100e-02 | True |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | Old_English_sheepdog | 0.515319 | True | West_Highland_white_terrier | 1.510400e-01 | True | soft-coated_wheaten_terrier | 5.642000e-02 | True |
| 1272 | 750011400160841729 | https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg | 1 | muzzle | 0.237620 | False | Boston_bull | 8.714980e-02 | True | sombrero | 6.850990e-02 | False |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | standard_poodle | 0.258732 | True | teddy | 1.307600e-01 | False | toy_poodle | 7.172630e-02 | True |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | Labrador_retriever | 0.252031 | True | Maltese_dog | 1.880900e-01 | True | golden_retriever | 1.330170e-01 | True |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | Saluki | 0.484428 | True | borzoi | 2.635500e-01 | True | Labrador_retriever | 7.700380e-02 | True |
| 1276 | 750071704093859840 | https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg | 2 | redbone | 0.382113 | True | malinois | 2.499430e-01 | True | miniature_pinscher | 7.092620e-02 | True |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | pug | 0.978277 | True | teddy | 3.134460e-03 | False | Brabancon_griffon | 3.061490e-03 | True |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | golden_retriever | 0.316704 | True | llama | 1.742690e-01 | False | Labrador_retriever | 1.473640e-01 | True |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | Shih-Tzu | 0.814405 | True | Lhasa | 1.752200e-01 | True | Pekinese | 8.072300e-03 | True |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | toy_poodle | 0.478018 | True | miniature_poodle | 2.074580e-01 | True | croquet_ball | 8.587890e-02 | False |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | pug | 0.977765 | True | Boston_bull | 4.794250e-03 | True | French_bulldog | 4.572840e-03 | True |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | Border_collie | 0.672791 | True | collie | 2.701880e-01 | True | papillon | 3.450390e-02 | True |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | Pembroke | 0.972587 | True | Cardigan | 1.477170e-02 | True | basenji | 5.798030e-03 | True |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | toy_poodle | 0.912648 | True | miniature_poodle | 3.505920e-02 | True | seat_belt | 2.637560e-02 | False |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | Labrador_retriever | 0.929390 | True | Chesapeake_Bay_retriever | 3.825350e-02 | True | golden_retriever | 7.610200e-03 | True |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | Labrador_retriever | 0.947164 | True | Chesapeake_Bay_retriever | 2.059670e-02 | True | golden_retriever | 1.657920e-02 | True |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg | 1 | Walker_hound | 0.178852 | True | German_short-haired_pointer | 1.157520e-01 | True | English_foxhound | 1.137960e-01 | True |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/751456786360725504/pu/img/hWqfIQ29A0cBv6f_.jpg | 1 | golden_retriever | 0.714409 | True | Afghan_hound | 6.616260e-02 | True | chow | 2.841260e-02 | True |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | Labrador_retriever | 0.516257 | True | golden_retriever | 2.108390e-01 | True | dingo | 1.620220e-01 | False |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | dalmatian | 0.868304 | True | studio_couch | 5.962300e-02 | False | snow_leopard | 1.387630e-02 | False |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | toy_poodle | 0.757756 | True | miniature_poodle | 3.514950e-02 | True | Scottish_deerhound | 2.769820e-02 | True |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | chow | 0.703569 | True | Pomeranian | 7.663670e-02 | True | Siamese_cat | 4.595910e-02 | False |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | Lakeland_terrier | 0.424168 | True | teddy | 2.605620e-01 | False | golden_retriever | 1.274320e-01 | True |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | Labrador_retriever | 0.527659 | True | German_shepherd | 1.747650e-01 | True | Chihuahua | 4.552540e-02 | True |
| 1297 | 752309394570878976 | https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg | 1 | Bedlington_terrier | 0.399163 | True | standard_poodle | 8.642490e-02 | True | wire-haired_fox_terrier | 7.523110e-02 | True |
| 1299 | 752519690950500352 | https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg | 3 | swing | 0.999984 | False | Labrador_retriever | 1.002880e-05 | True | Eskimo_dog | 1.434470e-06 | True |
| 1300 | 752660715232722944 | https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg | 2 | goose | 0.339324 | False | English_setter | 5.051180e-02 | True | basset | 4.909330e-02 | True |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | German_shepherd | 0.299966 | True | Eskimo_dog | 2.783550e-01 | True | Siberian_husky | 1.785200e-01 | True |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | German_shepherd | 0.609283 | True | malinois | 3.524600e-01 | True | kelpie | 1.610520e-02 | True |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | Pembroke | 0.868511 | True | Cardigan | 1.037080e-01 | True | Shetland_sheepdog | 1.814160e-02 | True |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | chow | 0.194773 | True | monitor | 1.023050e-01 | False | Siberian_husky | 8.685470e-02 | True |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | bluetick | 0.360071 | True | crutch | 1.348160e-01 | False | tripod | 9.820660e-02 | False |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/753398183879991296/pu/img/bqFy5Zc_PEk6Mx-B.jpg | 1 | whippet | 0.163794 | True | Italian_greyhound | 1.571920e-01 | True | English_foxhound | 1.429950e-01 | True |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/753420390836346880/pu/img/ZHLvYxSHYuQK3uXi.jpg | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | miniature_pinscher | 0.456092 | True | toy_terrier | 1.531260e-01 | True | Italian_greyhound | 1.441470e-01 | True |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | French_bulldog | 0.600985 | True | Boston_bull | 2.731760e-01 | True | boxer | 5.677150e-02 | True |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | chow | 0.168909 | True | Norfolk_terrier | 1.291140e-01 | True | Pomeranian | 1.208220e-01 | True |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | beagle | 0.858513 | True | basset | 7.601190e-02 | True | English_foxhound | 1.624560e-02 | True |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/754481405627957248/pu/img/YY1eBDOlP9QFC4Bj.jpg | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | golden_retriever | 0.872385 | True | Labrador_retriever | 9.996310e-02 | True | cocker_spaniel | 6.050830e-03 | True |
| 1315 | 754874841593970688 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/755110610942169088/pu/img/3-INz45pSRMkzOEF.jpg | 1 | Labrador_retriever | 0.708974 | True | golden_retriever | 1.143140e-01 | True | Great_Pyrenees | 6.581340e-02 | True |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/755955658164465664/pu/img/YcjfthN7C3z61GUj.jpg | 1 | Pekinese | 0.596882 | True | Maltese_dog | 1.764780e-01 | True | Great_Pyrenees | 2.677530e-02 | True |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | Airedale | 0.602957 | True | Irish_terrier | 8.698080e-02 | True | bloodhound | 8.627650e-02 | True |
| 1320 | 756288534030475264 | https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg | 3 | conch | 0.925621 | False | French_bulldog | 3.249220e-02 | True | tiger_cat | 6.679080e-03 | False |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | golden_retriever | 0.981652 | True | cocker_spaniel | 6.790300e-03 | True | Labrador_retriever | 4.324510e-03 | True |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | Pembroke | 0.294808 | True | kelpie | 2.823010e-01 | True | Cardigan | 1.126010e-01 | True |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | golden_retriever | 0.790371 | True | cocker_spaniel | 1.302680e-01 | True | Labrador_retriever | 6.462870e-02 | True |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | golden_retriever | 0.678555 | True | Labrador_retriever | 7.263200e-02 | True | Border_terrier | 4.903300e-02 | True |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | Italian_greyhound | 0.914667 | True | whippet | 4.777370e-02 | True | ice_lolly | 1.547680e-02 | False |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | Labrador_retriever | 0.787125 | True | Chesapeake_Bay_retriever | 1.126760e-01 | True | Rottweiler | 4.803860e-02 | True |
| 1328 | 757400162377592832 | https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg | 1 | seat_belt | 0.523926 | False | golden_retriever | 8.780030e-02 | True | Tibetan_mastiff | 7.512670e-02 | True |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | bluetick | 0.829259 | True | beagle | 1.453580e-01 | True | Walker_hound | 1.959530e-02 | True |
| 1332 | 757725642876129280 | https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg | 2 | seat_belt | 0.425176 | False | Labrador_retriever | 1.281280e-01 | True | Siamese_cat | 9.124110e-02 | False |
| 1333 | 757729163776290825 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 1334 | 757741869644341248 | https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg | 1 | skunk | 0.609715 | False | Old_English_sheepdog | 1.288990e-01 | True | Siberian_husky | 1.907610e-02 | True |
| 1335 | 758041019896193024 | https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg | 1 | bookshop | 0.794272 | False | Cardigan | 5.126530e-02 | True | Bernese_mountain_dog | 2.659630e-02 | True |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | Pembroke | 0.987643 | True | Cardigan | 1.211210e-02 | True | Siamese_cat | 1.174770e-04 | False |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | Chesapeake_Bay_retriever | 0.702954 | True | laptop | 9.227750e-02 | False | notebook | 3.272680e-02 | False |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/758467147756691456/pu/img/YTNzjRFDSPNXukmM.jpg | 1 | Labrador_retriever | 0.436377 | True | Chihuahua | 1.139560e-01 | True | American_Staffordshire_terrier | 9.968910e-02 | True |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | Pembroke | 0.546145 | True | Cardigan | 2.442000e-01 | True | German_shepherd | 1.004290e-01 | True |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | Chesapeake_Bay_retriever | 0.848514 | True | Labrador_retriever | 1.100540e-01 | True | curly-coated_retriever | 2.520140e-02 | True |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | Chesapeake_Bay_retriever | 0.480048 | True | vizsla | 2.645220e-01 | True | Weimaraner | 1.218400e-01 | True |
| 1342 | 758854675097526272 | https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg | 4 | barrow | 0.974047 | False | Old_English_sheepdog | 2.379140e-02 | True | komondor | 1.246300e-03 | True |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | Labrador_retriever | 0.778546 | True | bathing_cap | 1.542540e-01 | False | golden_retriever | 2.497160e-02 | True |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | Shetland_sheepdog | 0.129034 | True | kelpie | 1.175080e-01 | True | Siberian_husky | 1.067080e-01 | True |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | kuvasz | 0.511341 | True | golden_retriever | 7.689910e-02 | True | white_wolf | 6.326940e-02 | False |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | kuvasz | 0.223148 | True | Bedlington_terrier | 2.207310e-01 | True | teddy | 1.813030e-01 | False |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | golden_retriever | 0.763333 | True | Chesapeake_Bay_retriever | 1.942510e-01 | True | Labrador_retriever | 1.222540e-02 | True |
| 1349 | 759566828574212096 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | golden_retriever | 0.985876 | True | Labrador_retriever | 1.947770e-03 | True | kuvasz | 1.751740e-03 | True |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | Sussex_spaniel | 0.355395 | True | vizsla | 1.410940e-01 | True | otterhound | 9.219820e-02 | True |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | Labrador_retriever | 0.324579 | True | seat_belt | 1.091680e-01 | False | pug | 1.024660e-01 | True |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/760289324994879489/pu/img/3ItvBEoo4aebPfvr.jpg | 1 | Old_English_sheepdog | 0.302200 | True | Lhasa | 2.588030e-01 | True | briard | 1.792000e-01 | True |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | Samoyed | 0.988013 | True | malamute | 4.518240e-03 | True | West_Highland_white_terrier | 1.189250e-03 | True |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | golden_retriever | 0.760546 | True | Labrador_retriever | 2.320790e-01 | True | redbone | 2.874170e-03 | True |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | Blenheim_spaniel | 0.113992 | True | cocker_spaniel | 1.057800e-01 | True | borzoi | 7.393450e-02 | True |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1361 | 761227390836215808 | https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg | 1 | cougar | 0.306512 | False | French_bulldog | 2.808020e-01 | True | boxer | 5.452340e-02 | True |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | standard_poodle | 0.660893 | True | Samoyed | 3.148860e-01 | True | miniature_poodle | 8.833830e-03 | True |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | Norwegian_elkhound | 0.822936 | True | malinois | 8.615250e-02 | True | German_shepherd | 6.333290e-02 | True |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | Gordon_setter | 0.240427 | True | Saluki | 2.242690e-01 | True | Doberman | 1.297300e-01 | True |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1368 | 761750502866649088 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | Labrador_retriever | 0.475552 | True | Chesapeake_Bay_retriever | 8.289800e-02 | True | Staffordshire_bullterrier | 4.846400e-02 | True |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/762035577168560129/pu/img/kD4TeHRRiSKgOyDx.jpg | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | chow | 0.999953 | True | Tibetan_mastiff | 2.335910e-05 | True | dhole | 3.010330e-06 | False |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/762471745303355393/pu/img/RKcEUz7-VDipoGKJ.jpg | 1 | Samoyed | 0.540276 | True | standard_poodle | 2.798020e-01 | True | toy_poodle | 1.020580e-01 | True |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | kelpie | 0.519047 | True | German_shepherd | 2.960690e-01 | True | dingo | 6.100530e-02 | False |
| 1375 | 763103485927849985 | https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg | 2 | seat_belt | 0.685821 | False | ice_bear | 8.159720e-02 | False | chow | 3.908480e-02 | True |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | miniature_poodle | 0.354674 | True | toy_poodle | 3.386420e-01 | True | teddy | 1.558280e-01 | False |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | German_shepherd | 0.973677 | True | malinois | 2.594970e-02 | True | kelpie | 1.915680e-04 | True |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | Bernese_mountain_dog | 0.792059 | True | Appenzeller | 1.550340e-01 | True | EntleBucher | 3.837380e-02 | True |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | golden_retriever | 0.829456 | True | Labrador_retriever | 8.937090e-02 | True | kuvasz | 1.702750e-02 | True |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | Pembroke | 0.509491 | True | Cardigan | 3.304010e-01 | True | Shetland_sheepdog | 3.887490e-02 | True |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | beagle | 0.993333 | True | Walker_hound | 2.902190e-03 | True | basset | 2.415180e-03 | True |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | golden_retriever | 0.969518 | True | Labrador_retriever | 2.169610e-02 | True | Border_terrier | 2.074550e-03 | True |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | Welsh_springer_spaniel | 0.728153 | True | basset | 1.038420e-01 | True | Brittany_spaniel | 6.241430e-02 | True |
| 1386 | 766069199026450432 | https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg | 1 | redbone | 0.484855 | True | beagle | 4.375270e-01 | True | basset | 1.058540e-02 | True |
| 1387 | 766078092750233600 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | toy_poodle | 0.966896 | True | miniature_poodle | 1.642430e-02 | True | cocker_spaniel | 1.022710e-02 | True |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | keeshond | 0.995823 | True | Pomeranian | 3.897210e-03 | True | Norwegian_elkhound | 2.531090e-04 | True |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | Doberman | 0.948355 | True | vizsla | 1.503200e-02 | True | Rhodesian_ridgeback | 9.630840e-03 | True |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | beagle | 0.451697 | True | basset | 1.975130e-01 | True | bloodhound | 7.269860e-02 | True |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | toy_poodle | 0.873841 | True | miniature_poodle | 5.919180e-02 | True | Irish_terrier | 3.530600e-02 | True |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | chow | 0.483228 | True | golden_retriever | 1.650630e-01 | True | Norfolk_terrier | 6.017290e-02 | True |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | vizsla | 0.307794 | True | fountain | 1.421850e-01 | False | Chesapeake_Bay_retriever | 1.139030e-01 | True |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | Labrador_retriever | 0.739170 | True | Chesapeake_Bay_retriever | 2.464880e-01 | True | kelpie | 6.892340e-03 | True |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | Great_Pyrenees | 0.729745 | True | golden_retriever | 2.379610e-01 | True | Labrador_retriever | 2.090330e-02 | True |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | basenji | 0.183283 | True | Italian_greyhound | 1.360120e-01 | True | whippet | 6.012990e-02 | True |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | chow | 0.720219 | True | Brabancon_griffon | 5.836530e-02 | True | Rottweiler | 5.511350e-02 | True |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/768967618174877700/pu/img/4wfsrs0ZnQ5pstXm.jpg | 1 | Pomeranian | 0.182358 | True | golden_retriever | 1.106580e-01 | True | mousetrap | 8.639890e-02 | False |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | golden_retriever | 0.166538 | True | Pekinese | 1.482150e-01 | True | cocker_spaniel | 8.273510e-02 | True |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | pug | 0.407117 | True | muzzle | 1.656380e-01 | False | kuvasz | 4.583720e-02 | True |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | Boston_bull | 0.414965 | True | American_Staffordshire_terrier | 2.869850e-01 | True | Staffordshire_bullterrier | 1.149700e-01 | True |
| 1407 | 770093767776997377 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | Italian_greyhound | 0.931668 | True | Mexican_hairless | 3.889620e-02 | True | whippet | 1.315140e-02 | True |
| 1409 | 770414278348247044 | https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg | 1 | maillot | 0.580528 | False | maillot | 8.144890e-02 | False | golden_retriever | 5.356960e-02 | True |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | chow | 0.979515 | True | golden_retriever | 1.021870e-02 | True | Pomeranian | 4.606040e-03 | True |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | Bernese_mountain_dog | 0.787812 | True | Greater_Swiss_Mountain_dog | 1.639460e-01 | True | EntleBucher | 2.029340e-02 | True |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | Labrador_retriever | 0.568789 | True | pug | 1.799180e-01 | True | Staffordshire_bullterrier | 3.443740e-02 | True |
| 1416 | 771136648247640064 | https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg | 1 | bathtub | 0.368660 | False | golden_retriever | 2.974020e-01 | True | tub | 2.017110e-01 | False |
| 1417 | 771171053431250945 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | collie | 0.503728 | True | Border_collie | 4.509440e-01 | True | English_springer | 1.269280e-02 | True |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | Labrador_retriever | 0.833952 | True | golden_retriever | 1.032230e-01 | True | soccer_ball | 1.209390e-02 | False |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | Pembroke | 0.541780 | True | Cardigan | 2.605040e-01 | True | Shetland_sheepdog | 6.370310e-02 | True |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | Chihuahua | 0.803293 | True | toy_terrier | 5.298000e-02 | True | Italian_greyhound | 3.723880e-02 | True |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | Labrador_retriever | 0.217821 | True | beagle | 1.576770e-01 | True | golden_retriever | 1.277260e-01 | True |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | golden_retriever | 0.275318 | True | Irish_setter | 1.009880e-01 | True | vizsla | 7.352490e-02 | True |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | Pembroke | 0.367945 | True | Chihuahua | 2.235220e-01 | True | Pekinese | 1.648710e-01 | True |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | Newfoundland | 0.574345 | True | Border_collie | 1.283520e-01 | True | Saint_Bernard | 5.947550e-02 | True |
| 1427 | 772615324260794368 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | basset | 0.915351 | True | Walker_hound | 7.241590e-02 | True | beagle | 8.228940e-03 | True |
| 1429 | 772877495989305348 | https://pbs.twimg.com/ext_tw_video_thumb/772874595468795904/pu/img/t8gbjy2rA19xtQYR.jpg | 1 | tabby | 0.218303 | False | Norwegian_elkhound | 1.385230e-01 | True | wombat | 7.421720e-02 | False |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | Blenheim_spaniel | 0.427766 | True | Shih-Tzu | 2.192560e-01 | True | Welsh_springer_spaniel | 1.446140e-01 | True |
| 1431 | 773247561583001600 | https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg | 1 | seat_belt | 0.713588 | False | miniature_pinscher | 8.336880e-02 | True | Brabancon_griffon | 7.569610e-02 | True |
| 1432 | 773308824254029826 | https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg | 1 | shopping_cart | 0.572349 | False | Labrador_retriever | 1.514060e-01 | True | shopping_basket | 1.071020e-01 | False |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | Old_English_sheepdog | 0.969311 | True | Maltese_dog | 1.324300e-02 | True | soft-coated_wheaten_terrier | 4.857310e-03 | True |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | silky_terrier | 0.324251 | True | Yorkshire_terrier | 1.812100e-01 | True | Airedale | 1.334360e-01 | True |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | Pomeranian | 0.554331 | True | Samoyed | 4.321580e-01 | True | chow | 3.199420e-03 | True |
| 1437 | 773985732834758656 | https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg | 4 | giant_panda | 0.451149 | False | fur_coat | 1.480010e-01 | False | pug | 1.095700e-01 | True |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | Eskimo_dog | 0.596045 | True | Siberian_husky | 2.230670e-01 | True | Saluki | 3.632470e-02 | True |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | Walker_hound | 0.627593 | True | basenji | 1.287050e-01 | True | Ibizan_hound | 1.262820e-01 | True |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | toy_poodle | 0.719941 | True | miniature_poodle | 2.515460e-01 | True | Lakeland_terrier | 7.008380e-03 | True |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | beagle | 0.571229 | True | Chihuahua | 1.752570e-01 | True | Pembroke | 3.430630e-02 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | chow | 0.520022 | True | bath_towel | 2.877470e-02 | False | French_bulldog | 2.599010e-02 | True |
| 1446 | 775898661951791106 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1447 | 776088319444877312 | https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg | 3 | web_site | 0.999916 | False | pug | 7.657020e-05 | True | menu | 2.164680e-06 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | Rottweiler | 0.502228 | True | black-and-tan_coonhound | 1.545940e-01 | True | bloodhound | 1.351760e-01 | True |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | Samoyed | 0.940326 | True | Pomeranian | 5.552720e-02 | True | keeshond | 2.226350e-03 | True |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | Labrador_retriever | 0.884839 | True | Chesapeake_Bay_retriever | 5.756510e-02 | True | paintbrush | 5.766080e-03 | False |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | toy_poodle | 0.516610 | True | miniature_poodle | 2.550330e-01 | True | standard_poodle | 1.689890e-01 | True |
| 1453 | 776819012571455488 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | Chihuahua | 0.988412 | True | Mexican_hairless | 4.177220e-03 | True | hog | 1.506580e-03 | False |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | chow | 0.999823 | True | Norwich_terrier | 5.644850e-05 | True | Pomeranian | 2.768060e-05 | True |
| 1456 | 777641927919427584 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | Afghan_hound | 0.123529 | True | basset | 1.196820e-01 | True | Siberian_husky | 1.087090e-01 | True |
| 1459 | 778027034220126208 | https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg | 1 | clumber | 0.946718 | True | cocker_spaniel | 1.594990e-02 | True | Lhasa | 6.519110e-03 | True |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | German_shepherd | 0.717776 | True | malinois | 1.111750e-01 | True | Norwegian_elkhound | 5.880240e-02 | True |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | Boston_bull | 0.322070 | True | pug | 2.299030e-01 | True | muzzle | 1.014200e-01 | False |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | collie | 0.345266 | True | borzoi | 3.128230e-01 | True | Border_collie | 2.130110e-01 | True |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | Pembroke | 0.848362 | True | Cardigan | 1.081240e-01 | True | beagle | 1.194170e-02 | True |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | Airedale | 0.786089 | True | Irish_terrier | 1.214880e-01 | True | Lakeland_terrier | 1.460310e-02 | True |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | German_shepherd | 0.515699 | True | malinois | 3.002920e-01 | True | kelpie | 8.702230e-02 | True |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | Staffordshire_bullterrier | 0.351434 | True | boxer | 2.014780e-01 | True | American_Staffordshire_terrier | 1.428380e-01 | True |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | cocker_spaniel | 0.715351 | True | Labrador_retriever | 2.070560e-01 | True | Chihuahua | 2.851940e-02 | True |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | toy_poodle | 0.431080 | True | soft-coated_wheaten_terrier | 6.036490e-02 | True | cocker_spaniel | 5.984540e-02 | True |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/779377444025499652/pu/img/eIiLDy9F6rPNarEc.jpg | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | vizsla | 0.144012 | True | mongoose | 9.147360e-02 | False | hatchet | 7.354470e-02 | False |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | Great_Dane | 0.382491 | True | German_shepherd | 3.120260e-01 | True | bull_mastiff | 3.327190e-02 | True |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZfUsAE5hgp.jpg | 1 | pug | 0.919255 | True | French_bulldog | 3.235030e-02 | True | bull_mastiff | 2.846790e-02 | True |
| 1476 | 780496263422808064 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | golden_retriever | 0.628312 | True | Labrador_retriever | 3.173650e-01 | True | Tibetan_mastiff | 1.226010e-02 | True |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | Siberian_husky | 0.951963 | True | Eskimo_dog | 3.534610e-02 | True | Pembroke | 8.861940e-03 | True |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | Chesapeake_Bay_retriever | 0.488555 | True | Sussex_spaniel | 2.716550e-01 | True | kelpie | 1.069130e-01 | True |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | Shetland_sheepdog | 0.973841 | True | collie | 2.518760e-02 | True | Border_collie | 2.973110e-04 | True |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | Mexican_hairless | 0.887771 | True | Italian_greyhound | 3.066640e-02 | True | seat_belt | 2.672980e-02 | False |
| 1484 | 781524693396357120 | https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg | 1 | tennis_ball | 0.994712 | False | Chesapeake_Bay_retriever | 3.522500e-03 | True | Labrador_retriever | 9.214390e-04 | True |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | Pembroke | 0.438087 | True | golden_retriever | 2.269540e-01 | True | collie | 7.065160e-02 | True |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1487 | 782021823840026624 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | briard | 0.504427 | True | soft-coated_wheaten_terrier | 3.906780e-01 | True | Lhasa | 3.459550e-02 | True |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | malamute | 0.840871 | True | Tibetan_mastiff | 1.405160e-01 | True | Eskimo_dog | 1.201160e-02 | True |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | golden_retriever | 0.560699 | True | otterhound | 1.994820e-01 | True | clumber | 4.068180e-02 | True |
| 1492 | 782969140009107456 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | Chesapeake_Bay_retriever | 0.240602 | True | Airedale | 1.640880e-01 | True | boxer | 1.345060e-01 | True |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1495 | 783347506784731136 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | Norwegian_elkhound | 0.877130 | True | cairn | 8.624060e-02 | True | keeshond | 1.101910e-02 | True |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | Chihuahua | 0.789000 | True | miniature_pinscher | 1.159160e-01 | True | toy_terrier | 3.629390e-02 | True |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | chow | 0.314265 | True | golden_retriever | 3.004350e-01 | True | Australian_terrier | 4.948690e-02 | True |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | Lakeland_terrier | 0.265659 | True | golden_retriever | 1.964140e-01 | True | standard_poodle | 1.335340e-01 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | miniature_poodle | 0.744819 | True | toy_poodle | 2.431920e-01 | True | standard_poodle | 1.092020e-02 | True |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | malamute | 0.757764 | True | Eskimo_dog | 1.512480e-01 | True | Siberian_husky | 8.484020e-02 | True |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1504 | 785170936622350336 | https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg | 2 | seat_belt | 0.891193 | False | Eskimo_dog | 2.749440e-02 | True | Samoyed | 1.953030e-02 | True |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | teddy | 0.674893 | False | cradle | 5.673960e-02 | False | chow | 5.613700e-02 | True |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | miniature_pinscher | 0.436023 | True | black-and-tan_coonhound | 2.580490e-01 | True | Rottweiler | 1.452310e-01 | True |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/785872596088811520/pu/img/5O-_BgqdFQu_2Bt7.jpg | 1 | Great_Pyrenees | 0.392108 | True | golden_retriever | 1.983580e-01 | True | Pekinese | 1.433280e-01 | True |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | teddy | 0.972070 | False | toy_poodle | 8.492620e-03 | True | chow | 2.882710e-03 | True |
| 1510 | 786036967502913536 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | Labrador_retriever | 0.478193 | True | schipperke | 2.248170e-01 | True | Staffordshire_bullterrier | 7.739560e-02 | True |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | golden_retriever | 0.929266 | True | Labrador_retriever | 6.286670e-02 | True | Saluki | 2.156690e-03 | True |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | Pembroke | 0.709512 | True | Cardigan | 2.871780e-01 | True | chow | 5.701760e-04 | True |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | Leonberg | 0.512034 | True | keeshond | 4.648160e-01 | True | Pomeranian | 7.812490e-03 | True |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | Pomeranian | 0.467321 | True | Persian_cat | 1.229780e-01 | False | chow | 1.026540e-01 | True |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | golden_retriever | 0.915303 | True | Saluki | 4.621260e-02 | True | Labrador_retriever | 3.750410e-02 | True |
| 1517 | 787322443945877504 | https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg | 1 | seat_belt | 0.747739 | False | golden_retriever | 1.057030e-01 | True | dingo | 1.725680e-02 | False |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | Chihuahua | 0.900483 | True | toy_terrier | 2.108450e-02 | True | miniature_pinscher | 1.948400e-02 | True |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | German_shepherd | 0.992339 | True | malinois | 4.920390e-03 | True | kelpie | 8.528020e-04 | True |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | pug | 0.362835 | True | French_bulldog | 2.218640e-01 | True | English_setter | 8.041830e-02 | True |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1522 | 788070120937619456 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | chow | 0.814145 | True | Pomeranian | 1.127040e-01 | True | Chihuahua | 1.588320e-02 | True |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | Samoyed | 0.735480 | True | Pomeranian | 7.510100e-02 | True | Arctic_fox | 3.607190e-02 | False |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | golden_retriever | 0.805238 | True | Labrador_retriever | 1.137980e-01 | True | Brittany_spaniel | 3.855870e-02 | True |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1527 | 788908386943430656 | https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg | 1 | remote_control | 0.881538 | False | oscilloscope | 3.551310e-02 | False | golden_retriever | 3.408970e-02 | True |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | Chihuahua | 0.746135 | True | Pekinese | 7.038340e-02 | True | Pembroke | 4.923690e-02 | True |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | malamute | 0.812860 | True | Siberian_husky | 1.208530e-01 | True | Eskimo_dog | 2.426930e-02 | True |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | Chesapeake_Bay_retriever | 0.878822 | True | beagle | 1.857030e-02 | True | Labrador_retriever | 1.749850e-02 | True |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | chow | 0.260702 | True | cougar | 8.814270e-02 | False | Pomeranian | 7.988310e-02 | True |
| 1533 | 789986466051088384 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | Pembroke | 0.658808 | True | Cardigan | 1.530960e-01 | True | toy_terrier | 1.022990e-01 | True |
| 1536 | 790581949425475584 | https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg | 2 | refrigerator | 0.998886 | False | malinois | 1.529990e-04 | True | kelpie | 1.308170e-04 | True |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | Bernese_mountain_dog | 0.996541 | True | EntleBucher | 1.056980e-03 | True | Appenzeller | 9.979070e-04 | True |
| 1538 | 790723298204217344 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1539 | 790946055508652032 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | cocker_spaniel | 0.349195 | True | flat-coated_retriever | 3.095350e-01 | True | Newfoundland | 1.047680e-01 | True |
| 1541 | 791026214425268224 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | miniature_pinscher | 0.892925 | True | toy_terrier | 9.552380e-02 | True | Doberman | 3.544260e-03 | True |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | Pembroke | 0.972629 | True | Cardigan | 2.702590e-02 | True | basenji | 1.525020e-04 | True |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | komondor | 0.942856 | True | swab | 5.271520e-02 | False | Tibetan_terrier | 2.743000e-03 | True |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | cocker_spaniel | 0.746387 | True | Irish_setter | 9.161510e-02 | True | miniature_poodle | 6.107820e-02 | True |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | Yorkshire_terrier | 0.912804 | True | silky_terrier | 6.782250e-02 | True | Australian_terrier | 4.450690e-03 | True |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 1.131290e-04 | False | standard_poodle | 8.314510e-05 | True |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | Labrador_retriever | 0.724944 | True | golden_retriever | 1.697440e-01 | True | kuvasz | 3.550230e-02 | True |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | Italian_greyhound | 0.193869 | True | bluetick | 1.603800e-01 | True | standard_poodle | 1.259820e-01 | True |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | golden_retriever | 0.946224 | True | Labrador_retriever | 3.647660e-02 | True | doormat | 2.352850e-03 | False |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | Lakeland_terrier | 0.266824 | True | Irish_terrier | 2.187830e-01 | True | Airedale | 1.329600e-01 | True |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | Labrador_retriever | 0.654762 | True | golden_retriever | 7.410000e-02 | True | Chihuahua | 4.233930e-02 | True |
| 1556 | 793210959003287553 | https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg | 1 | doormat | 0.874431 | False | French_bulldog | 1.875910e-02 | True | Boston_bull | 1.513440e-02 | True |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | wire-haired_fox_terrier | 0.456047 | True | Lakeland_terrier | 2.734280e-01 | True | English_springer | 8.364330e-02 | True |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | golden_retriever | 0.559308 | True | Labrador_retriever | 3.902220e-01 | True | cocker_spaniel | 3.631570e-02 | True |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | basset | 0.207622 | True | Walker_hound | 6.057420e-02 | True | beagle | 4.122050e-02 | True |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | Siberian_husky | 0.231695 | True | Eskimo_dog | 2.067490e-01 | True | Pembroke | 7.011950e-02 | True |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | golden_retriever | 0.326122 | True | Labrador_retriever | 2.199040e-01 | True | Chesapeake_Bay_retriever | 1.633660e-01 | True |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | miniature_pinscher | 0.538981 | True | Chihuahua | 2.178300e-01 | True | toy_terrier | 8.914870e-02 | True |
| 1564 | 793614319594401792 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | Old_English_sheepdog | 0.765277 | True | Bedlington_terrier | 1.127530e-01 | True | Kerry_blue_terrier | 4.766170e-02 | True |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | Samoyed | 0.988307 | True | malamute | 4.906350e-03 | True | Great_Pyrenees | 2.901290e-03 | True |
| 1569 | 794355576146903043 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | teddy | 0.569566 | False | bath_towel | 1.737450e-01 | False | toy_poodle | 3.766180e-02 | True |
| 1571 | 794983741416415232 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | golden_retriever | 0.925494 | True | Labrador_retriever | 5.924080e-02 | True | tennis_ball | 4.495340e-03 | False |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg | 1 | golden_retriever | 0.193082 | True | Chesapeake_Bay_retriever | 1.579270e-01 | True | soft-coated_wheaten_terrier | 1.246840e-01 | True |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | golden_retriever | 0.893775 | True | Labrador_retriever | 7.013980e-02 | True | doormat | 8.418530e-03 | False |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | chow | 0.973846 | True | Tibetan_mastiff | 1.410990e-02 | True | gibbon | 2.358320e-03 | False |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | Cardigan | 0.700182 | True | Pembroke | 2.607380e-01 | True | papillon | 1.710990e-02 | True |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1579 | 796177847564038144 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | Pekinese | 0.461164 | True | Pomeranian | 2.886500e-01 | True | Siamese_cat | 5.242300e-02 | False |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | cocker_spaniel | 0.116924 | True | seat_belt | 1.075110e-01 | False | Australian_terrier | 9.984340e-02 | True |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | American_Staffordshire_terrier | 0.463996 | True | Staffordshire_bullterrier | 1.555660e-01 | True | Weimaraner | 1.375870e-01 | True |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | Cardigan | 0.839129 | True | Boston_bull | 8.069850e-02 | True | Pembroke | 3.450500e-02 | True |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | collie | 0.767005 | True | Border_collie | 1.008440e-01 | True | kelpie | 4.836810e-02 | True |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | Pembroke | 0.954089 | True | Cardigan | 3.364390e-02 | True | papillon | 9.735660e-03 | True |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | American_Staffordshire_terrier | 0.489845 | True | Chihuahua | 3.057600e-01 | True | Staffordshire_bullterrier | 7.279910e-02 | True |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | Pekinese | 0.524583 | True | Shih-Tzu | 1.029310e-01 | True | Pomeranian | 9.789310e-02 | True |
| 1588 | 798340744599797760 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1589 | 798628517273620480 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 1590 | 798644042770751489 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 1591 | 798665375516884993 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1593 | 798694562394996736 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 1594 | 798697898615730177 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | West_Highland_white_terrier | 0.539463 | True | cairn | 1.848970e-01 | True | Norfolk_terrier | 1.630240e-01 | True |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | Siberian_husky | 0.703224 | True | Eskimo_dog | 2.293510e-01 | True | malamute | 4.435080e-02 | True |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | Norfolk_terrier | 0.334436 | True | Norwich_terrier | 2.315730e-01 | True | Australian_terrier | 2.142030e-01 | True |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | malamute | 0.985028 | True | Siberian_husky | 5.834420e-03 | True | Eskimo_dog | 5.442810e-03 | True |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | miniature_pinscher | 0.583630 | True | redbone | 2.760950e-01 | True | toy_terrier | 1.855010e-02 | True |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | Border_collie | 0.442534 | True | collie | 2.886840e-01 | True | Shetland_sheepdog | 1.963990e-01 | True |
| 1601 | 799774291445383169 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/800018199223959552/pu/img/3Qp73edtkZO-qWPy.jpg | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | golden_retriever | 0.359860 | True | Pembroke | 1.942070e-01 | True | collie | 1.546030e-01 | True |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | Pembroke | 0.828904 | True | Cardigan | 1.673730e-01 | True | Chihuahua | 7.659340e-04 | True |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | cocker_spaniel | 0.771984 | True | miniature_poodle | 7.665280e-02 | True | toy_poodle | 3.961830e-02 | True |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | dalmatian | 0.823356 | True | English_setter | 9.460190e-02 | True | bluetick | 2.195340e-02 | True |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | Pembroke | 0.550506 | True | Cardigan | 3.066120e-01 | True | Shetland_sheepdog | 5.423000e-02 | True |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | Staffordshire_bullterrier | 0.327887 | True | American_Staffordshire_terrier | 2.719160e-01 | True | Labrador_retriever | 2.476190e-01 | True |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | Eskimo_dog | 0.482498 | True | Siberian_husky | 3.357740e-01 | True | malamute | 1.345890e-01 | True |
| 1615 | 802247111496568832 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | Labrador_retriever | 0.897162 | True | beagle | 1.689480e-02 | True | Rhodesian_ridgeback | 1.206060e-02 | True |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | golden_retriever | 0.610171 | True | Labrador_retriever | 1.732520e-01 | True | cocker_spaniel | 1.632570e-01 | True |
| 1619 | 802624713319034886 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | chow | 0.944032 | True | golden_retriever | 1.723980e-02 | True | Pomeranian | 1.208480e-02 | True |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | Pembroke | 0.457086 | True | chow | 3.078010e-01 | True | golden_retriever | 4.998820e-02 | True |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/803638023904559104/pu/img/vxm0Htm5iIV7EOAQ.jpg | 1 | Labrador_retriever | 0.372776 | True | golden_retriever | 3.436660e-01 | True | Great_Pyrenees | 6.724230e-02 | True |
| 1624 | 803692223237865472 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | miniature_pinscher | 0.817066 | True | redbone | 5.970650e-02 | True | Irish_terrier | 3.419520e-02 | True |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1627 | 804413760345620481 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | Tibetan_mastiff | 0.915790 | True | German_shepherd | 6.247970e-02 | True | Leonberg | 8.297490e-03 | True |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | Pembroke | 0.244705 | True | Rhodesian_ridgeback | 1.804610e-01 | True | Cardigan | 9.466370e-02 | True |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | malinois | 0.643147 | True | German_shepherd | 1.866420e-01 | True | Border_terrier | 1.093450e-01 | True |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/805826823359631360/pu/img/yr_fF0TZCR-B70p2.jpg | 1 | Siberian_husky | 0.248926 | True | American_Staffordshire_terrier | 9.831330e-02 | True | Eskimo_dog | 8.018850e-02 | True |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | Norwegian_elkhound | 0.657967 | True | keeshond | 3.191360e-01 | True | Leonberg | 7.946740e-03 | True |
| 1634 | 805958939288408065 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | chow | 0.835102 | True | Pomeranian | 4.078290e-02 | True | Eskimo_dog | 2.127450e-02 | True |
| 1636 | 806242860592926720 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | vizsla | 0.938617 | True | Brittany_spaniel | 3.673890e-02 | True | Chesapeake_Bay_retriever | 3.971490e-03 | True |
| 1638 | 806629075125202948 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | golden_retriever | 0.610807 | True | Irish_setter | 2.136420e-01 | True | Welsh_springer_spaniel | 3.188660e-02 | True |
| 1640 | 807059379405148160 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | golden_retriever | 0.873233 | True | cocker_spaniel | 3.369330e-02 | True | chow | 2.040840e-02 | True |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | Labrador_retriever | 0.730959 | True | Staffordshire_bullterrier | 1.307260e-01 | True | American_Staffordshire_terrier | 2.885260e-02 | True |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | golden_retriever | 0.426183 | True | Labrador_retriever | 2.574470e-01 | True | Great_Pyrenees | 1.264820e-01 | True |
| 1645 | 808134635716833280 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | Airedale | 0.454239 | True | cocker_spaniel | 2.193230e-01 | True | Irish_terrier | 9.319300e-02 | True |
| 1647 | 808733504066486276 | https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg | 1 | seat_belt | 0.779137 | False | toy_poodle | 3.692710e-02 | True | golden_retriever | 1.697250e-02 | True |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | Rottweiler | 0.369530 | True | miniature_pinscher | 1.948670e-01 | True | kelpie | 1.601040e-01 | True |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | vizsla | 0.911412 | True | bloodhound | 1.713390e-02 | True | Labrador_retriever | 1.176100e-02 | True |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | Pomeranian | 0.819511 | True | Samoyed | 1.412410e-01 | True | Pembroke | 1.345520e-02 | True |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | Greater_Swiss_Mountain_dog | 0.375415 | True | Cardigan | 1.343170e-01 | True | English_springer | 7.369710e-02 | True |
| 1652 | 809808892968534016 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | Norwich_terrier | 0.397163 | True | toy_poodle | 2.745400e-01 | True | miniature_poodle | 1.346670e-01 | True |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | Staffordshire_bullterrier | 0.292556 | True | American_Staffordshire_terrier | 2.612330e-01 | True | Border_terrier | 6.237540e-02 | True |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | malamute | 0.620768 | True | Eskimo_dog | 1.583950e-01 | True | Tibetan_mastiff | 2.896170e-02 | True |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | malamute | 0.753521 | True | Siberian_husky | 1.661510e-01 | True | Eskimo_dog | 6.981080e-02 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 8.231820e-02 | True | curly-coated_retriever | 6.746050e-02 | True |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | golden_retriever | 0.871342 | True | Tibetan_mastiff | 3.670770e-02 | True | Labrador_retriever | 2.582320e-02 | True |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | Pembroke | 0.804177 | True | Cardigan | 1.898900e-01 | True | beagle | 1.964750e-03 | True |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | beagle | 0.396280 | True | Pembroke | 4.956190e-02 | True | wire-haired_fox_terrier | 4.634920e-02 | True |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | Pekinese | 0.386082 | True | Labrador_retriever | 2.028620e-01 | True | golden_retriever | 1.704870e-01 | True |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | Staffordshire_bullterrier | 0.610573 | True | French_bulldog | 1.599350e-01 | True | doormat | 5.867210e-02 | False |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | golden_retriever | 0.784873 | True | cocker_spaniel | 8.778810e-02 | True | Labrador_retriever | 8.327470e-02 | True |
| 1664 | 812466873996607488 | https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg | 1 | bath_towel | 0.099804 | False | pillow | 9.231810e-02 | False | Great_Dane | 7.820550e-02 | True |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | Irish_setter | 0.326873 | True | golden_retriever | 1.826100e-01 | True | Leonberg | 1.569120e-01 | True |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | bull_mastiff | 0.989316 | True | boxer | 7.042960e-03 | True | French_bulldog | 1.739610e-03 | True |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | golden_retriever | 0.914804 | True | Labrador_retriever | 8.355000e-02 | True | kuvasz | 4.532240e-04 | True |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | toy_terrier | 0.776400 | True | Pembroke | 1.150340e-01 | True | basenji | 4.887300e-02 | True |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | Doberman | 0.909951 | True | kelpie | 4.264940e-02 | True | miniature_pinscher | 2.300410e-02 | True |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | Great_Dane | 0.128056 | True | Boston_bull | 1.170030e-01 | True | kelpie | 8.696430e-02 | True |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | dingo | 0.287369 | False | Pembroke | 1.406820e-01 | True | basenji | 9.081890e-02 | True |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | Norwegian_elkhound | 0.432416 | True | whippet | 3.742230e-01 | True | Siberian_husky | 3.246260e-02 | True |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | beagle | 0.848735 | True | Ibizan_hound | 4.460250e-02 | True | Italian_greyhound | 1.861080e-02 | True |
| 1675 | 813157409116065792 | https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg | 2 | Siamese_cat | 0.843911 | False | Pembroke | 7.056710e-02 | True | Cardigan | 4.191600e-02 | True |
| 1676 | 813172488309972993 | https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg | 1 | doormat | 0.954844 | False | golden_retriever | 2.619310e-02 | True | cocker_spaniel | 4.385980e-03 | True |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | golden_retriever | 0.888181 | True | Labrador_retriever | 4.231190e-02 | True | Saluki | 9.701730e-03 | True |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | cocker_spaniel | 0.701852 | True | golden_retriever | 1.203450e-01 | True | Labrador_retriever | 3.632020e-02 | True |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | Samoyed | 0.905972 | True | Pomeranian | 4.803830e-02 | True | West_Highland_white_terrier | 3.566710e-02 | True |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | malamute | 0.501159 | True | Siberian_husky | 2.287920e-01 | True | Eskimo_dog | 2.003880e-01 | True |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | French_bulldog | 0.709146 | True | Boston_bull | 2.476210e-01 | True | boxer | 1.885510e-02 | True |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | Siberian_husky | 0.699355 | True | Eskimo_dog | 2.564330e-01 | True | Norwegian_elkhound | 1.318880e-02 | True |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | golden_retriever | 0.490068 | True | Labrador_retriever | 2.919560e-01 | True | chow | 7.247470e-02 | True |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | miniature_poodle | 0.626913 | True | toy_poodle | 2.655820e-01 | True | soft-coated_wheaten_terrier | 4.161420e-02 | True |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | golden_retriever | 0.650814 | True | kuvasz | 5.328100e-02 | True | cocker_spaniel | 3.543960e-02 | True |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | dalmatian | 0.999828 | True | boxer | 6.780610e-05 | True | American_Staffordshire_terrier | 3.424360e-05 | True |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | German_shepherd | 0.817953 | True | Norwegian_elkhound | 1.400070e-01 | True | malinois | 2.482090e-02 | True |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | Border_collie | 0.548907 | True | Cardigan | 1.785230e-01 | True | collie | 1.463510e-01 | True |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | Chihuahua | 0.428756 | True | miniature_pinscher | 1.039120e-01 | True | Staffordshire_bullterrier | 8.895870e-02 | True |
| 1693 | 816014286006976512 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | Pomeranian | 0.967345 | True | Samoyed | 7.397480e-03 | True | papillon | 6.016500e-03 | True |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | Labrador_retriever | 0.919330 | True | kuvasz | 4.947950e-02 | True | golden_retriever | 1.193420e-02 | True |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | Chihuahua | 0.756992 | True | Pomeranian | 5.284950e-02 | True | Maltese_dog | 4.760780e-02 | True |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | malamute | 0.668164 | True | Pembroke | 1.050330e-01 | True | Siberian_husky | 7.787500e-02 | True |
| 1699 | 816829038950027264 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | kelpie | 0.864415 | True | French_bulldog | 9.745560e-02 | True | German_shepherd | 8.525870e-03 | True |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | Saluki | 0.568809 | True | Afghan_hound | 2.293520e-01 | True | golden_retriever | 1.571300e-01 | True |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | golden_retriever | 0.295483 | True | Irish_setter | 1.444310e-01 | True | Chesapeake_Bay_retriever | 7.787900e-02 | True |
| 1703 | 817181837579653120 | https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | Doberman | 0.806163 | True | black-and-tan_coonhound | 9.738590e-02 | True | miniature_pinscher | 8.599280e-02 | True |
| 1705 | 817423860136083457 | https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | pug | 0.971358 | True | French_bulldog | 2.851850e-02 | True | Boston_bull | 8.596980e-05 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 2.141450e-01 | True | Irish_water_spaniel | 2.976900e-02 | True |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg | 1 | cocker_spaniel | 0.387608 | True | golden_retriever | 2.648440e-01 | True | Pekinese | 1.221230e-01 | True |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | golden_retriever | 0.621931 | True | Labrador_retriever | 3.649970e-01 | True | redbone | 3.971480e-03 | True |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | miniature_schnauzer | 0.367368 | True | toy_poodle | 1.124790e-01 | True | standard_schnauzer | 9.543400e-02 | True |
| 1711 | 818536468981415936 | https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg | 1 | swing | 0.999403 | False | Welsh_springer_spaniel | 6.229490e-05 | True | bow | 3.046190e-05 | False |
| 1712 | 818588835076603904 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | Chihuahua | 0.450722 | True | Border_terrier | 2.041770e-01 | True | beagle | 9.277400e-02 | True |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | Labrador_retriever | 0.384188 | True | beagle | 2.559170e-01 | True | grocery_store | 7.979950e-02 | False |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1718 | 819015337530290176 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | Border_terrier | 0.482452 | True | German_shepherd | 1.810820e-01 | True | Norwegian_elkhound | 6.525660e-02 | True |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | Rottweiler | 0.909106 | True | black-and-tan_coonhound | 4.411980e-02 | True | Doberman | 3.183490e-02 | True |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | Cardigan | 0.547935 | True | basenji | 1.164420e-01 | True | Shetland_sheepdog | 1.016810e-01 | True |
| 1722 | 819711362133872643 | https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg | 2 | acorn_squash | 0.848704 | False | toilet_seat | 4.434840e-02 | False | toy_poodle | 2.200940e-02 | True |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | American_Staffordshire_terrier | 0.925505 | True | Staffordshire_bullterrier | 3.622150e-02 | True | Italian_greyhound | 2.041190e-02 | True |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | Gordon_setter | 0.940724 | True | black-and-tan_coonhound | 4.204120e-02 | True | Rottweiler | 9.417430e-03 | True |
| 1727 | 820446719150292993 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | West_Highland_white_terrier | 0.872064 | True | kuvasz | 5.952590e-02 | True | Samoyed | 3.739960e-02 | True |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | golden_retriever | 0.838012 | True | Pekinese | 5.673310e-02 | True | Labrador_retriever | 2.394360e-02 | True |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | Old_English_sheepdog | 0.148020 | True | Airedale | 1.335340e-01 | True | Tibetan_mastiff | 1.209030e-01 | True |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | Pomeranian | 0.856590 | True | papillon | 3.853650e-02 | True | Yorkshire_terrier | 3.314580e-02 | True |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg | 1 | German_shepherd | 0.515933 | True | malinois | 2.036510e-01 | True | Irish_setter | 9.105510e-02 | True |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg | 1 | Irish_setter | 0.505496 | True | vizsla | 1.687470e-01 | True | Chesapeake_Bay_retriever | 1.113110e-01 | True |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | Doberman | 0.763539 | True | black-and-tan_coonhound | 1.366020e-01 | True | miniature_pinscher | 8.765390e-02 | True |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | golden_retriever | 0.980071 | True | Labrador_retriever | 8.757510e-03 | True | Saluki | 1.805950e-03 | True |
| 1736 | 821813639212650496 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | golden_retriever | 0.266238 | True | cocker_spaniel | 2.233250e-01 | True | Irish_setter | 1.516310e-01 | True |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | Pomeranian | 0.960199 | True | Samoyed | 2.305630e-02 | True | Maltese_dog | 8.944880e-03 | True |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | cocker_spaniel | 0.664487 | True | Norfolk_terrier | 7.508900e-02 | True | Norwich_terrier | 5.964390e-02 | True |
| 1742 | 822647212903690241 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | malinois | 0.332897 | True | Chihuahua | 1.041160e-01 | True | Staffordshire_bullterrier | 4.774500e-02 | True |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | Lakeland_terrier | 0.196015 | True | Labrador_retriever | 1.603290e-01 | True | Irish_terrier | 6.912620e-02 | True |
| 1745 | 822975315408461824 | https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg | 1 | bathtub | 0.331098 | False | tub | 2.488600e-01 | False | Pembroke | 2.331620e-01 | True |
| 1746 | 823269594223824897 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1747 | 823322678127919110 | https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg | 2 | cowboy_boot | 0.990253 | False | Chihuahua | 1.836350e-03 | True | papillon | 1.273900e-03 | True |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | dingo | 0.280949 | False | German_shepherd | 1.940440e-01 | True | Pembroke | 1.200510e-01 | True |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | cairn | 0.203999 | True | snorkel | 1.718930e-01 | False | Norfolk_terrier | 1.075430e-01 | True |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | schipperke | 0.234076 | True | curly-coated_retriever | 1.930930e-01 | True | Labrador_retriever | 9.519660e-02 | True |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | Pembroke | 0.990793 | True | Cardigan | 8.919390e-03 | True | basenji | 2.622640e-04 | True |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | English_setter | 0.526488 | True | golden_retriever | 4.028150e-01 | True | Irish_setter | 3.441780e-02 | True |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | Border_terrier | 0.610499 | True | malinois | 9.029120e-02 | True | Airedale | 6.862470e-02 | True |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | Eskimo_dog | 0.524454 | True | Siberian_husky | 4.676780e-01 | True | malamute | 4.975840e-03 | True |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | Pekinese | 0.354823 | True | Pomeranian | 2.453900e-01 | True | toy_poodle | 1.365450e-01 | True |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | Rottweiler | 0.681495 | True | Tibetan_mastiff | 1.479400e-01 | True | black-and-tan_coonhound | 2.452520e-02 | True |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | Great_Pyrenees | 0.853407 | True | golden_retriever | 5.353130e-02 | True | English_setter | 4.582990e-02 | True |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1761 | 826115272272650244 | https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg | 1 | tennis_ball | 0.997071 | False | golden_retriever | 2.330850e-03 | True | kuvasz | 2.834720e-04 | True |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | Labrador_retriever | 0.782058 | True | golden_retriever | 1.565810e-01 | True | soft-coated_wheaten_terrier | 7.275120e-03 | True |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | French_bulldog | 0.903048 | True | pug | 9.624210e-02 | True | Boston_bull | 2.343640e-04 | True |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | German_shepherd | 0.741860 | True | Tibetan_mastiff | 1.228120e-01 | True | kelpie | 1.004600e-01 | True |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | French_bulldog | 0.628119 | True | Siamese_cat | 1.173970e-01 | False | cougar | 8.276490e-02 | False |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | Great_Pyrenees | 0.858764 | True | golden_retriever | 2.352570e-02 | True | Pekinese | 1.710390e-02 | True |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | Great_Dane | 0.869681 | True | American_Staffordshire_terrier | 2.665820e-02 | True | boxer | 1.986610e-02 | True |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | golden_retriever | 0.352486 | True | toy_poodle | 1.788840e-01 | True | Labrador_retriever | 8.416440e-02 | True |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | Pembroke | 0.325638 | True | golden_retriever | 3.172350e-01 | True | Labrador_retriever | 1.160870e-01 | True |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | collie | 0.285555 | True | Border_collie | 2.173060e-01 | True | Saint_Bernard | 1.432450e-01 | True |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | German_shepherd | 0.806115 | True | Tibetan_mastiff | 1.048310e-01 | True | kelpie | 3.814820e-02 | True |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | American_Staffordshire_terrier | 0.936662 | True | Staffordshire_bullterrier | 3.299910e-02 | True | bull_mastiff | 1.718340e-02 | True |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | malamute | 0.663047 | True | Eskimo_dog | 2.077790e-01 | True | Tibetan_mastiff | 4.094880e-02 | True |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | American_Staffordshire_terrier | 0.523086 | True | Staffordshire_bullterrier | 1.861680e-01 | True | Chihuahua | 4.208940e-02 | True |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | Bedlington_terrier | 0.392535 | True | Labrador_retriever | 8.902170e-02 | True | clumber | 8.179980e-02 | True |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | Weimaraner | 0.133033 | True | Chesapeake_Bay_retriever | 9.222700e-02 | True | American_Staffordshire_terrier | 6.509450e-02 | True |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | teddy | 0.908457 | False | toy_poodle | 1.803980e-02 | True | standard_poodle | 1.266710e-02 | True |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | golden_retriever | 0.649209 | True | Chesapeake_Bay_retriever | 1.985600e-01 | True | vizsla | 5.619990e-02 | True |
| 1781 | 828708714936930305 | https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg | 1 | hippopotamus | 0.942911 | False | Mexican_hairless | 8.388370e-03 | True | ice_lolly | 6.206470e-03 | False |
| 1782 | 828770345708580865 | https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg | 1 | seat_belt | 0.765979 | False | Chesapeake_Bay_retriever | 3.389860e-02 | True | polecat | 2.725160e-02 | False |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | boxer | 0.312221 | True | dalmatian | 2.440400e-01 | True | conch | 1.302730e-01 | False |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | golden_retriever | 0.573140 | True | cocker_spaniel | 1.111590e-01 | True | gibbon | 9.412690e-02 | False |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | Labrador_retriever | 0.315163 | True | golden_retriever | 1.532100e-01 | True | Pekinese | 1.327910e-01 | True |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | French_bulldog | 0.950851 | True | Pekinese | 1.519960e-02 | True | pug | 1.109360e-02 | True |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | Border_terrier | 0.394486 | True | Staffordshire_bullterrier | 3.765740e-01 | True | American_Staffordshire_terrier | 3.129160e-02 | True |
| 1789 | 829878982036299777 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | toy_poodle | 0.442713 | True | Pomeranian | 1.420730e-01 | True | Pekinese | 1.257450e-01 | True |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg | 1 | kuvasz | 0.451516 | True | golden_retriever | 3.171960e-01 | True | English_setter | 1.327590e-01 | True |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | cocker_spaniel | 0.263323 | True | Brittany_spaniel | 2.005500e-01 | True | doormat | 1.934140e-01 | False |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | Doberman | 0.369389 | True | kelpie | 1.324490e-01 | True | Labrador_retriever | 7.472730e-02 | True |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | briard | 0.982755 | True | soft-coated_wheaten_terrier | 9.084350e-03 | True | Bouvier_des_Flandres | 4.692800e-03 | True |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | Old_English_sheepdog | 0.999715 | True | Tibetan_terrier | 4.629670e-05 | True | guinea_pig | 4.118430e-05 | False |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | Chihuahua | 0.257415 | True | Pembroke | 1.614420e-01 | True | French_bulldog | 9.214290e-02 | True |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | Eskimo_dog | 0.530416 | True | Siberian_husky | 1.803350e-01 | True | Norwegian_elkhound | 1.043140e-01 | True |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | Pembroke | 0.624802 | True | Cardigan | 3.628610e-01 | True | Appenzeller | 3.926210e-03 | True |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | bloodhound | 0.777562 | True | Great_Dane | 4.741760e-02 | True | Leonberg | 1.794310e-02 | True |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | Pomeranian | 0.153862 | True | marmot | 9.123390e-02 | False | grey_fox | 9.064410e-02 | False |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | whippet | 0.601712 | True | Ibizan_hound | 1.526620e-01 | True | Italian_greyhound | 1.350550e-01 | True |
| 1803 | 832040443403784192 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1804 | 832215726631055365 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg | 1 | Pembroke | 0.134081 | True | ice_bear | 5.192780e-02 | False | pug | 4.431090e-02 | True |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | kelpie | 0.504690 | True | German_short-haired_pointer | 1.052080e-01 | True | Staffordshire_bullterrier | 5.433850e-02 | True |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | Pekinese | 0.988916 | True | Brabancon_griffon | 1.676800e-03 | True | Siamese_cat | 1.125890e-03 | False |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | Eskimo_dog | 0.525032 | True | Siberian_husky | 2.522380e-01 | True | malamute | 2.168390e-01 | True |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | Cardigan | 0.160888 | True | Staffordshire_bullterrier | 1.594410e-01 | True | Boston_bull | 1.543680e-01 | True |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | boxer | 0.539036 | True | French_bulldog | 3.176170e-01 | True | bull_mastiff | 9.392850e-02 | True |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | Cardigan | 0.710523 | True | kelpie | 1.061020e-01 | True | shopping_cart | 5.547550e-02 | False |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | golden_retriever | 0.727039 | True | cocker_spaniel | 7.113980e-02 | True | Tibetan_mastiff | 4.869420e-02 | True |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | West_Highland_white_terrier | 0.918144 | True | Maltese_dog | 2.572070e-02 | True | Lakeland_terrier | 2.021110e-02 | True |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | Chihuahua | 0.438054 | True | kelpie | 1.497060e-01 | True | Pembroke | 9.648050e-02 | True |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | kuvasz | 0.494969 | True | Great_Pyrenees | 3.126320e-01 | True | golden_retriever | 1.417360e-01 | True |
| 1817 | 834086379323871233 | https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg | 1 | bath_towel | 0.736759 | False | sleeping_bag | 6.295910e-02 | False | Labrador_retriever | 4.526270e-02 | True |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | golden_retriever | 0.754799 | True | Pekinese | 1.978610e-01 | True | Labrador_retriever | 8.654040e-03 | True |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | Rhodesian_ridgeback | 0.468619 | True | whippet | 1.775310e-01 | True | redbone | 1.065520e-01 | True |
| 1821 | 834574053763584002 | https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg | 1 | toilet_tissue | 0.262936 | False | golden_retriever | 2.265640e-01 | True | bathtub | 7.887900e-02 | False |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | Border_terrier | 0.156276 | True | Norwegian_elkhound | 1.259120e-01 | True | Boston_bull | 9.662390e-02 | True |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 1.964760e-01 | True | Irish_terrier | 7.309650e-02 | True |
| 1824 | 835152434251116546 | https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg | 3 | swing | 0.967066 | False | American_Staffordshire_terrier | 1.273090e-02 | True | Staffordshire_bullterrier | 7.039220e-03 | True |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | Border_collie | 0.663138 | True | collie | 1.524940e-01 | True | Cardigan | 3.547060e-02 | True |
| 1826 | 835264098648616962 | https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg | 2 | hyena | 0.736871 | False | Chesapeake_Bay_retriever | 8.750330e-02 | True | meerkat | 4.205780e-02 | False |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | Rottweiler | 0.341276 | True | Border_terrier | 3.362200e-01 | True | Gordon_setter | 4.544830e-02 | True |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | Staffordshire_bullterrier | 0.610655 | True | muzzle | 1.321380e-01 | False | American_Staffordshire_terrier | 1.095440e-01 | True |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | Samoyed | 0.963558 | True | white_wolf | 1.984760e-02 | False | malamute | 5.904340e-03 | True |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | borzoi | 0.564688 | True | ice_bear | 7.826750e-02 | False | Pembroke | 5.791620e-02 | True |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | mortarboard | 0.936882 | False | academic_gown | 2.081540e-02 | False | schipperke | 1.156350e-02 | True |
| 1834 | 836989968035819520 | https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg | 1 | shopping_cart | 0.572422 | False | shopping_basket | 4.140020e-01 | False | toy_poodle | 5.887300e-03 | True |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | Siberian_husky | 0.767696 | True | Eskimo_dog | 2.170790e-01 | True | malamute | 1.165680e-02 | True |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | American_Staffordshire_terrier | 0.660085 | True | Staffordshire_bullterrier | 3.349470e-01 | True | dalmatian | 2.697160e-03 | True |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | Norwegian_elkhound | 0.976255 | True | keeshond | 1.399020e-02 | True | seat_belt | 2.110540e-03 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | golden_retriever | 0.887625 | True | Labrador_retriever | 6.871750e-02 | True | kuvasz | 3.038680e-02 | True |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | chow | 0.800975 | True | seat_belt | 1.641330e-01 | False | Pomeranian | 1.798100e-02 | True |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | Great_Pyrenees | 0.997692 | True | kuvasz | 1.000640e-03 | True | Newfoundland | 4.045560e-04 | True |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | kelpie | 0.216562 | True | doormat | 1.399940e-01 | False | dalmatian | 1.328200e-01 | True |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | Border_terrier | 0.664538 | True | Brabancon_griffon | 1.704510e-01 | True | Yorkshire_terrier | 8.782360e-02 | True |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | Leonberg | 0.927021 | True | Newfoundland | 5.000910e-02 | True | Saint_Bernard | 1.072780e-02 | True |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1848 | 839549326359670784 | https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg | 1 | swing | 0.393527 | False | Norwich_terrier | 5.248000e-02 | True | Pembroke | 4.990060e-02 | True |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | Staffordshire_bullterrier | 0.604938 | True | American_Staffordshire_terrier | 3.115400e-01 | True | Boston_bull | 3.715910e-02 | True |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | Chesapeake_Bay_retriever | 0.863987 | True | Labrador_retriever | 5.263230e-02 | True | kelpie | 3.257360e-02 | True |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | golden_retriever | 0.711148 | True | cocker_spaniel | 1.579290e-01 | True | Labrador_retriever | 5.958190e-02 | True |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | Brittany_spaniel | 0.962985 | True | Blenheim_spaniel | 1.482000e-02 | True | clumber | 9.557110e-03 | True |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg | 1 | Afghan_hound | 0.903712 | True | Saluki | 3.521500e-02 | True | bloodhound | 2.656550e-02 | True |
| 1856 | 841439858740625411 | https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg | 3 | military_uniform | 0.853684 | False | Labrador_retriever | 4.819990e-02 | True | groenendael | 1.539440e-02 | True |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | Chihuahua | 0.547401 | True | bow_tie | 1.983610e-01 | False | Pembroke | 5.849250e-02 | True |
| 1858 | 841833993020538882 | https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | chow | 0.293493 | True | Newfoundland | 1.813360e-01 | True | schipperke | 1.251520e-01 | True |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | French_bulldog | 0.891227 | True | soccer_ball | 2.281100e-02 | False | bull_mastiff | 1.285200e-02 | True |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | Pembroke | 0.685084 | True | Cardigan | 3.146080e-01 | True | basenji | 1.598240e-04 | True |
| 1862 | 842765311967449089 | https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg | 1 | tub | 0.665238 | False | bucket | 1.051660e-01 | False | Labrador_retriever | 2.933990e-02 | True |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | Labrador_retriever | 0.461076 | True | golden_retriever | 1.549460e-01 | True | Chihuahua | 1.102490e-01 | True |
| 1864 | 842892208864923648 | https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | Pembroke | 0.958452 | True | Cardigan | 2.376990e-02 | True | Chihuahua | 5.269360e-03 | True |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | Labrador_retriever | 0.430583 | True | golden_retriever | 2.635810e-01 | True | Great_Pyrenees | 1.793850e-01 | True |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | Labrador_retriever | 0.922540 | True | golden_retriever | 7.435780e-02 | True | Great_Pyrenees | 2.324950e-03 | True |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | Labrador_retriever | 0.719510 | True | Chesapeake_Bay_retriever | 1.220190e-01 | True | Newfoundland | 3.882760e-02 | True |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | Labrador_retriever | 0.980213 | True | golden_retriever | 7.011670e-03 | True | beagle | 3.146970e-03 | True |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | Labrador_retriever | 0.742421 | True | golden_retriever | 1.952180e-01 | True | Chihuahua | 1.732010e-02 | True |
| 1872 | 844979544864018432 | https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg | 3 | tennis_ball | 0.999281 | False | racket | 3.700800e-04 | False | Shetland_sheepdog | 1.320680e-04 | True |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | Irish_water_spaniel | 0.567475 | True | Labrador_retriever | 1.694960e-01 | True | curly-coated_retriever | 1.015180e-01 | True |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | Dandie_Dinmont | 0.394404 | True | Maltese_dog | 1.865370e-01 | True | West_Highland_white_terrier | 1.819850e-01 | True |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | chow | 0.808681 | True | groenendael | 1.231410e-01 | True | Newfoundland | 2.214320e-02 | True |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | Samoyed | 0.979803 | True | chow | 1.592260e-02 | True | white_wolf | 1.302790e-03 | False |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | golden_retriever | 0.961110 | True | Labrador_retriever | 1.669520e-02 | True | Tibetan_mastiff | 9.081530e-03 | True |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | giant_schnauzer | 0.346468 | True | flat-coated_retriever | 2.184510e-01 | True | Labrador_retriever | 1.080200e-01 | True |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | golden_retriever | 0.650003 | True | Leonberg | 6.519920e-02 | True | Norfolk_terrier | 5.295530e-02 | True |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | Shetland_sheepdog | 0.450539 | True | papillon | 1.879280e-01 | True | collie | 1.400680e-01 | True |
| 1881 | 847116187444137987 | https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg | 1 | white_wolf | 0.128935 | False | American_Staffordshire_terrier | 1.134340e-01 | True | dingo | 8.123140e-02 | False |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | Staffordshire_bullterrier | 0.219609 | True | American_Staffordshire_terrier | 1.786710e-01 | True | pug | 1.232710e-01 | True |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | Airedale | 0.495380 | True | Irish_terrier | 3.164560e-01 | True | Lakeland_terrier | 1.585330e-01 | True |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | Cardigan | 0.413688 | True | Boston_bull | 3.818360e-01 | True | doormat | 6.586780e-02 | False |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | Bernese_mountain_dog | 0.951337 | True | Greater_Swiss_Mountain_dog | 1.684910e-02 | True | Appenzeller | 1.084920e-02 | True |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | Bedlington_terrier | 0.333486 | True | Ibizan_hound | 2.457970e-01 | True | wallaby | 1.316470e-01 | False |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | malamute | 0.544576 | True | Siberian_husky | 2.902680e-01 | True | Eskimo_dog | 1.544210e-01 | True |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | flat-coated_retriever | 0.823648 | True | Newfoundland | 1.005710e-01 | True | groenendael | 3.830970e-02 | True |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | schipperke | 0.907559 | True | crossword_puzzle | 1.793390e-02 | False | Chihuahua | 1.619070e-02 | True |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | Chihuahua | 0.292092 | True | toy_terrier | 1.368520e-01 | True | bonnet | 1.031110e-01 | False |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | Shetland_sheepdog | 0.759907 | True | collie | 1.074050e-01 | True | Pembroke | 5.233530e-02 | True |
| 1896 | 850145622816686080 | https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg | 2 | tennis_ball | 0.714798 | False | kelpie | 1.053900e-01 | True | malinois | 5.855270e-02 | True |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg | 1 | Yorkshire_terrier | 0.249012 | True | Maltese_dog | 1.663640e-01 | True | Shih-Tzu | 1.422540e-01 | True |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | pug | 0.996952 | True | bull_mastiff | 9.959010e-04 | True | French_bulldog | 8.833800e-04 | True |
| 1899 | 851224888060895234 | https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg | 3 | car_mirror | 0.971512 | False | seat_belt | 7.063460e-03 | False | standard_poodle | 5.682650e-03 | True |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | Cardigan | 0.394507 | True | Chihuahua | 7.725400e-02 | True | French_bulldog | 7.655880e-02 | True |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1903 | 851953902622658560 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1904 | 852189679701164033 | https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg | 1 | barrow | 0.423150 | False | Bernese_mountain_dog | 4.153740e-01 | True | EntleBucher | 6.734540e-02 | True |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | bloodhound | 0.186498 | True | Brabancon_griffon | 1.390280e-01 | True | Rottweiler | 1.259400e-01 | True |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | golden_retriever | 0.711235 | True | otterhound | 6.823470e-02 | True | Sussex_spaniel | 4.656170e-02 | True |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | Great_Dane | 0.783765 | True | Rhodesian_ridgeback | 1.141470e-01 | True | English_foxhound | 4.643950e-02 | True |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | German_shepherd | 0.509879 | True | malinois | 2.373110e-01 | True | kelpie | 4.691620e-02 | True |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | miniature_pinscher | 0.292519 | True | Chihuahua | 1.209460e-01 | True | Rottweiler | 1.194900e-01 | True |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | English_springer | 0.354733 | True | collie | 1.775380e-01 | True | Border_collie | 1.317060e-01 | True |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | black-and-tan_coonhound | 0.854861 | True | Doberman | 5.079180e-02 | True | bluetick | 2.176170e-02 | True |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | Pembroke | 0.907080 | True | Cardigan | 8.627200e-02 | True | Chihuahua | 1.413230e-03 | True |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | Chihuahua | 0.260242 | True | toy_poodle | 1.891580e-01 | True | Labrador_retriever | 1.441950e-01 | True |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | Pembroke | 0.695548 | True | Cardigan | 5.890170e-02 | True | chow | 2.841060e-02 | True |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | Blenheim_spaniel | 0.389513 | True | Pekinese | 1.882200e-01 | True | Japanese_spaniel | 8.262820e-02 | True |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | flat-coated_retriever | 0.321676 | True | Labrador_retriever | 1.151380e-01 | True | groenendael | 9.609970e-02 | True |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | Chihuahua | 0.876543 | True | Italian_greyhound | 3.296180e-02 | True | Cardigan | 2.077590e-02 | True |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | Old_English_sheepdog | 0.798481 | True | Tibetan_terrier | 6.060240e-02 | True | standard_poodle | 4.072190e-02 | True |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | Boston_bull | 0.306910 | True | Siamese_cat | 1.912180e-01 | False | Chihuahua | 1.892880e-01 | True |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | golden_retriever | 0.968623 | True | Labrador_retriever | 1.032520e-02 | True | Saluki | 4.148420e-03 | True |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | Samoyed | 0.998021 | True | Pomeranian | 9.216360e-04 | True | keeshond | 3.112610e-04 | True |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | malamute | 0.841597 | True | Siberian_husky | 7.364350e-02 | True | Eskimo_dog | 7.212860e-02 | True |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | Labrador_retriever | 0.919832 | True | beagle | 4.351300e-02 | True | golden_retriever | 2.335880e-02 | True |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | French_bulldog | 0.432580 | True | English_springer | 3.258980e-01 | True | Lakeland_terrier | 4.261790e-02 | True |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | golden_retriever | 0.863874 | True | Labrador_retriever | 1.592000e-02 | True | doormat | 1.061530e-02 | False |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | Pembroke | 0.987407 | True | Cardigan | 8.723030e-03 | True | basenji | 3.423730e-03 | True |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | golden_retriever | 0.578120 | True | Labrador_retriever | 2.860590e-01 | True | bloodhound | 2.691730e-02 | True |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg | 1 | Angora | 0.224218 | False | malamute | 2.161630e-01 | True | Persian_cat | 1.283830e-01 | False |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | golden_retriever | 0.895529 | True | Irish_setter | 2.409930e-02 | True | Labrador_retriever | 1.928540e-02 | True |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | Labrador_retriever | 0.899086 | True | golden_retriever | 4.709080e-02 | True | kuvasz | 2.320630e-02 | True |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | French_bulldog | 0.254587 | True | Staffordshire_bullterrier | 1.925580e-01 | True | hog | 1.002700e-01 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | Bedlington_terrier | 0.286558 | True | toy_poodle | 2.351930e-01 | True | Lakeland_terrier | 8.795070e-02 | True |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | Cardigan | 0.583936 | True | Pembroke | 5.597940e-02 | True | beagle | 4.589570e-02 | True |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | German_shepherd | 0.507951 | True | Pembroke | 1.361130e-01 | True | muzzle | 7.576420e-02 | False |
| 1942 | 861288531465048066 | https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg | 1 | syringe | 0.144712 | False | oxygen_mask | 1.066840e-01 | False | Bouvier_des_Flandres | 8.261020e-02 | True |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | Cardigan | 0.771008 | True | Pembroke | 1.371740e-01 | True | French_bulldog | 6.330860e-02 | True |
| 1944 | 861769973181624320 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | chow | 0.677589 | True | Pomeranian | 2.706480e-01 | True | Pekinese | 3.810990e-02 | True |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | basset | 0.393330 | True | beagle | 2.420340e-01 | True | boxer | 7.769250e-02 | True |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | Australian_terrier | 0.207281 | True | Irish_terrier | 1.562960e-01 | True | German_shepherd | 1.235360e-01 | True |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | French_bulldog | 0.935804 | True | pug | 5.957620e-02 | True | boxer | 1.412180e-03 | True |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | Lakeland_terrier | 0.275242 | True | Airedale | 1.905690e-01 | True | teddy | 1.025950e-01 | False |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | Staffordshire_bullterrier | 0.690517 | True | French_bulldog | 1.033600e-01 | True | beagle | 7.948940e-02 | True |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg | 1 | Eskimo_dog | 0.413330 | True | malamute | 3.476460e-01 | True | Siberian_husky | 1.495360e-01 | True |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | golden_retriever | 0.945905 | True | Labrador_retriever | 2.126360e-02 | True | Tibetan_mastiff | 2.049280e-02 | True |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | bull_mastiff | 0.668613 | True | French_bulldog | 1.805620e-01 | True | Staffordshire_bullterrier | 5.223740e-02 | True |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | Pembroke | 0.989882 | True | Cardigan | 9.906460e-03 | True | basenji | 1.349520e-04 | True |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | Chesapeake_Bay_retriever | 0.832435 | True | Labrador_retriever | 1.635510e-01 | True | Weimaraner | 2.770250e-03 | True |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | golden_retriever | 0.673664 | True | kuvasz | 1.575230e-01 | True | Labrador_retriever | 1.260730e-01 | True |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | Samoyed | 0.984086 | True | Pomeranian | 7.919280e-03 | True | keeshond | 3.328130e-03 | True |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | French_bulldog | 0.905334 | True | Boston_bull | 7.805970e-02 | True | pug | 1.770920e-03 | True |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 3.064070e-01 | True | curly-coated_retriever | 6.131410e-02 | True |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | Samoyed | 0.471403 | True | Pekinese | 3.022190e-01 | True | Pomeranian | 1.566060e-01 | True |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | Blenheim_spaniel | 0.352946 | True | papillon | 2.117660e-01 | True | Pekinese | 1.129520e-01 | True |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | Eskimo_dog | 0.616457 | True | Siberian_husky | 3.813300e-01 | True | malamute | 1.670220e-03 | True |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | Border_collie | 0.661953 | True | Cardigan | 1.757180e-01 | True | collie | 8.714240e-02 | True |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | Labrador_retriever | 0.522644 | True | kuvasz | 3.324610e-01 | True | dalmatian | 3.200810e-02 | True |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | whippet | 0.378151 | True | Italian_greyhound | 2.759350e-01 | True | American_Staffordshire_terrier | 9.499060e-02 | True |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | Labrador_retriever | 0.868107 | True | Great_Pyrenees | 6.097300e-02 | True | Saint_Bernard | 3.348890e-02 | True |
| 1970 | 868880397819494401 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | Pembroke | 0.664181 | True | Chihuahua | 1.692340e-01 | True | Cardigan | 1.327000e-01 | True |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | Chihuahua | 0.955156 | True | toy_terrier | 8.053730e-03 | True | muzzle | 6.295630e-03 | False |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | Pembroke | 0.993449 | True | Cardigan | 6.325080e-03 | True | Chihuahua | 1.775980e-04 | True |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | Pembroke | 0.980148 | True | Cardigan | 1.927110e-02 | True | malamute | 1.362600e-04 | True |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | Greater_Swiss_Mountain_dog | 0.622752 | True | Appenzeller | 1.584630e-01 | True | EntleBucher | 1.481150e-01 | True |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | golden_retriever | 0.841001 | True | Great_Pyrenees | 9.927840e-02 | True | Labrador_retriever | 3.262130e-02 | True |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | Pembroke | 0.945495 | True | Cardigan | 4.587550e-02 | True | beagle | 4.329430e-03 | True |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | kelpie | 0.398053 | True | macaque | 6.895490e-02 | False | dingo | 5.060180e-02 | False |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | komondor | 0.974781 | True | briard | 2.004130e-02 | True | swab | 3.228240e-03 | False |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | Labrador_retriever | 0.921393 | True | golden_retriever | 6.460800e-02 | True | bloodhound | 3.383370e-03 | True |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | Shetland_sheepdog | 0.969171 | True | collie | 1.826070e-02 | True | Pomeranian | 8.515340e-03 | True |
| 1984 | 872122724285648897 | https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg | 1 | basketball | 0.808396 | False | pug | 6.673630e-02 | True | dalmatian | 5.456980e-02 | True |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | Labrador_retriever | 0.972019 | True | flat-coated_retriever | 8.178280e-03 | True | Chesapeake_Bay_retriever | 7.359270e-03 | True |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | Pembroke | 0.931861 | True | Cardigan | 3.772120e-02 | True | Chihuahua | 1.196670e-02 | True |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | cocker_spaniel | 0.513191 | True | Sussex_spaniel | 1.590880e-01 | True | standard_poodle | 1.495090e-01 | True |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | pug | 0.999120 | True | French_bulldog | 5.519200e-04 | True | bull_mastiff | 7.289040e-05 | True |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | Labrador_retriever | 0.476913 | True | Chesapeake_Bay_retriever | 1.741450e-01 | True | German_short-haired_pointer | 9.286140e-02 | True |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | vizsla | 0.619782 | True | bloodhound | 3.380690e-01 | True | Chesapeake_Bay_retriever | 1.267630e-02 | True |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | Newfoundland | 0.678537 | True | Tibetan_mastiff | 2.440220e-01 | True | chow | 4.852950e-02 | True |
| 1992 | 873697596434513921 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | Cardigan | 0.806674 | True | Pembroke | 1.166220e-01 | True | kelpie | 4.918190e-02 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 4.043690e-02 | True | Newfoundland | 2.822830e-02 | True |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | cocker_spaniel | 0.437216 | True | miniature_poodle | 2.771910e-01 | True | toy_poodle | 1.574020e-01 | True |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | Labrador_retriever | 0.836052 | True | Staffordshire_bullterrier | 4.706910e-02 | True | beagle | 3.600710e-02 | True |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | West_Highland_white_terrier | 0.714319 | True | Siberian_husky | 9.191330e-02 | True | Great_Pyrenees | 4.603820e-02 | True |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg | 1 | Siberian_husky | 0.245048 | True | Pembroke | 2.237160e-01 | True | dingo | 1.607530e-01 | False |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | Labrador_retriever | 0.799551 | True | Chesapeake_Bay_retriever | 1.799750e-01 | True | vizsla | 4.617600e-03 | True |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | Bernese_mountain_dog | 0.534327 | True | Saint_Bernard | 3.463120e-01 | True | Greater_Swiss_Mountain_dog | 9.493270e-02 | True |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | golden_retriever | 0.874566 | True | Irish_terrier | 3.735420e-02 | True | chow | 1.672360e-02 | True |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | bloodhound | 0.575751 | True | redbone | 2.409700e-01 | True | Tibetan_mastiff | 8.893480e-02 | True |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | Pembroke | 0.931120 | True | Cardigan | 6.869820e-02 | True | basenji | 8.173790e-05 | True |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | Saluki | 0.509967 | True | Italian_greyhound | 9.049730e-02 | True | golden_retriever | 7.940580e-02 | True |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | basset | 0.995368 | True | Welsh_springer_spaniel | 1.936210e-03 | True | bathtub | 4.679190e-04 | False |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | Irish_setter | 0.364729 | True | golden_retriever | 2.029070e-01 | True | Irish_terrier | 1.074730e-01 | True |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | Chesapeake_Bay_retriever | 0.837956 | True | Labrador_retriever | 6.203420e-02 | True | Weimaraner | 4.059910e-02 | True |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | French_bulldog | 0.839097 | True | Boston_bull | 7.879940e-02 | True | toy_terrier | 1.524340e-02 | True |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | basset | 0.320420 | True | collie | 2.159750e-01 | True | Appenzeller | 1.285070e-01 | True |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | Italian_greyhound | 0.734684 | True | whippet | 1.504870e-01 | True | Ibizan_hound | 3.972460e-02 | True |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | vizsla | 0.960513 | True | miniature_pinscher | 9.430650e-03 | True | American_Staffordshire_terrier | 8.711300e-03 | True |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2013 | 879376492567855104 | https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg | 1 | tricycle | 0.663601 | False | Labrador_retriever | 3.349610e-02 | True | Pembroke | 1.882660e-02 | True |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg | 1 | English_springer | 0.383404 | True | Boston_bull | 1.349670e-01 | True | Cardigan | 1.104810e-01 | True |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | German_short-haired_pointer | 0.479896 | True | vizsla | 1.243530e-01 | True | bath_towel | 7.332020e-02 | False |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | basset | 0.813507 | True | beagle | 1.466540e-01 | True | cocker_spaniel | 9.485020e-03 | True |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | miniature_pinscher | 0.120298 | True | Rhodesian_ridgeback | 1.063950e-01 | True | beagle | 1.060730e-01 | True |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | Chihuahua | 0.238525 | True | meerkat | 1.042560e-01 | False | clumber | 5.258030e-02 | True |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | golden_retriever | 0.913255 | True | Labrador_retriever | 2.632860e-02 | True | cocker_spaniel | 9.370820e-03 | True |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | Pembroke | 0.791416 | True | Norwich_terrier | 6.139290e-02 | True | Chihuahua | 3.372570e-02 | True |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg | 1 | Samoyed | 0.281463 | True | Angora | 2.720660e-01 | False | Persian_cat | 1.148540e-01 | False |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | Saluki | 0.529012 | True | Afghan_hound | 2.500030e-01 | True | golden_retriever | 1.607390e-01 | True |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | Weimaraner | 0.291539 | True | Chesapeake_Bay_retriever | 2.789660e-01 | True | koala | 1.270170e-01 | False |
| 2026 | 882045870035918850 | https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg | 1 | web_site | 0.949591 | False | dhole | 1.732580e-02 | False | golden_retriever | 6.940630e-03 | True |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | golden_retriever | 0.762211 | True | Labrador_retriever | 9.898490e-02 | True | cocker_spaniel | 1.719950e-02 | True |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | Pembroke | 0.542982 | True | Chihuahua | 2.519880e-01 | True | Cardigan | 1.076990e-01 | True |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | Labrador_retriever | 0.850050 | True | Chesapeake_Bay_retriever | 7.425700e-02 | True | flat-coated_retriever | 1.557940e-02 | True |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | Eskimo_dog | 0.466778 | True | Siberian_husky | 4.060440e-01 | True | dingo | 7.341440e-02 | False |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | golden_retriever | 0.949562 | True | Labrador_retriever | 4.594790e-02 | True | kuvasz | 2.470940e-03 | True |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | chow | 0.987997 | True | Tibetan_mastiff | 7.098720e-03 | True | Newfoundland | 2.140330e-03 | True |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | golden_retriever | 0.943082 | True | Labrador_retriever | 3.240900e-02 | True | kuvasz | 5.500720e-03 | True |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | Doberman | 0.610946 | True | miniature_pinscher | 2.996030e-01 | True | kelpie | 6.302030e-02 | True |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | German_shepherd | 0.707046 | True | malinois | 1.993960e-01 | True | Norwegian_elkhound | 4.914760e-02 | True |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | Pembroke | 0.993225 | True | Cardigan | 3.216480e-03 | True | Chihuahua | 2.080890e-03 | True |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | pug | 0.546406 | True | French_bulldog | 4.042910e-01 | True | Brabancon_griffon | 4.400190e-02 | True |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | chow | 0.822103 | True | Norwich_terrier | 1.060750e-01 | True | Norfolk_terrier | 3.734850e-02 | True |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | Italian_greyhound | 0.259916 | True | American_Staffordshire_terrier | 1.984510e-01 | True | Staffordshire_bullterrier | 1.277250e-01 | True |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | malamute | 0.812482 | True | Siberian_husky | 7.171250e-02 | True | Eskimo_dog | 5.576970e-02 | True |
| 2041 | 885311592912609280 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | pug | 0.369275 | True | Labrador_retriever | 2.658350e-01 | True | kuvasz | 1.346970e-01 | True |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | Blenheim_spaniel | 0.972494 | True | Shih-Tzu | 6.630120e-03 | True | Bernese_mountain_dog | 6.239150e-03 | True |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | pug | 0.943575 | True | shower_cap | 2.528560e-02 | False | Siamese_cat | 2.848920e-03 | False |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | French_bulldog | 0.999201 | True | Chihuahua | 3.611780e-04 | True | Boston_bull | 7.556160e-05 | True |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | kuvasz | 0.309706 | True | Great_Pyrenees | 1.861360e-01 | True | Dandie_Dinmont | 8.634630e-02 | True |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | Chihuahua | 0.793469 | True | toy_terrier | 1.435280e-01 | True | can_opener | 3.225290e-02 | False |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | Samoyed | 0.733942 | True | Eskimo_dog | 3.502950e-02 | True | Staffordshire_bullterrier | 2.970470e-02 | True |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg | 1 | Mexican_hairless | 0.330741 | True | sea_lion | 2.756450e-01 | False | Weimaraner | 1.342030e-01 | True |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | basset | 0.821664 | True | redbone | 8.758150e-02 | True | Weimaraner | 2.623640e-02 | True |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | French_bulldog | 0.995026 | True | pug | 9.319080e-04 | True | bull_mastiff | 9.032110e-04 | True |
| 2055 | 888202515573088257 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | Siberian_husky | 0.700377 | True | Eskimo_dog | 1.665110e-01 | True | malamute | 1.114110e-01 | True |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | golden_retriever | 0.469760 | True | Labrador_retriever | 1.841720e-01 | True | English_setter | 7.348170e-02 | True |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | golden_retriever | 0.714719 | True | Tibetan_mastiff | 1.201840e-01 | True | Labrador_retriever | 1.055060e-01 | True |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg | 1 | whippet | 0.626152 | True | borzoi | 1.947420e-01 | True | Saluki | 2.735070e-02 | True |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | golden_retriever | 0.953442 | True | Labrador_retriever | 1.383410e-02 | True | redbone | 7.957750e-03 | True |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | French_bulldog | 0.991650 | True | boxer | 2.128640e-03 | True | Staffordshire_bullterrier | 1.498180e-03 | True |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | Pembroke | 0.966327 | True | Cardigan | 2.735570e-02 | True | basenji | 4.633230e-03 | True |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | French_bulldog | 0.377417 | True | Labrador_retriever | 1.513170e-01 | True | muzzle | 8.298110e-02 | False |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | Samoyed | 0.957979 | True | Pomeranian | 1.388350e-02 | True | chow | 8.167480e-03 | True |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | Pembroke | 0.511319 | True | Cardigan | 4.510380e-01 | True | Chihuahua | 2.924820e-02 | True |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | Irish_terrier | 0.487574 | True | Irish_setter | 1.930540e-01 | True | Chesapeake_Bay_retriever | 1.181840e-01 | True |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | Pomeranian | 0.566142 | True | Eskimo_dog | 1.784060e-01 | True | Pembroke | 7.650690e-02 | True |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | Appenzeller | 0.341703 | True | Border_collie | 1.992870e-01 | True | ice_lolly | 1.935480e-01 | False |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | Chesapeake_Bay_retriever | 0.425595 | True | Irish_terrier | 1.163170e-01 | True | Indian_elephant | 7.690220e-02 | False |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 2.257700e-01 | True | German_short-haired_pointer | 1.752190e-01 | True |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 1.680860e-01 | True | spatula | 4.083590e-02 | False |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 | True | malamute | 7.825300e-02 | True | kelpie | 3.137890e-02 | True |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 | True | Pekinese | 9.064650e-02 | True | papillon | 6.895690e-02 | True |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
tweet_data
| tweet_id | favorite_count | retweet_count | retweet_status | url | |
|---|---|---|---|---|---|
| 0 | 892420643555336193 | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU |
| 1 | 892177421306343426 | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV |
| 2 | 891815181378084864 | 25461 | 4328 | Original tweet | https://t.co/wUnZnhtVJB |
| 3 | 891689557279858688 | 42908 | 8964 | Original tweet | https://t.co/tD36da7qLQ |
| 4 | 891327558926688256 | 41048 | 9774 | Original tweet | https://t.co/AtUZn91f7f |
| 5 | 891087950875897856 | 20562 | 3261 | Original tweet | https://t.co/kQ04fDDRmh |
| 6 | 890971913173991426 | 12041 | 2158 | Original tweet | https://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl |
| 7 | 890729181411237888 | 56848 | 16716 | Original tweet | https://t.co/v0nONBcwxq |
| 8 | 890609185150312448 | 28226 | 4429 | Original tweet | https://t.co/9TwLuAGH0b |
| 9 | 890240255349198849 | 32467 | 7711 | Original tweet | https://t.co/t1bfwz5S2A |
| 10 | 890006608113172480 | 31166 | 7624 | Original tweet | https://t.co/dVPW0B0Mme |
| 11 | 889880896479866881 | 28268 | 5156 | Original tweet | https://t.co/u1XPQMl29g |
| 12 | 889665388333682689 | 38818 | 8538 | Original tweet | https://t.co/BxvuXk0UCm |
| 13 | 889638837579907072 | 27672 | 4735 | Original tweet | https://t.co/f8dEDcrKSR |
| 14 | 889531135344209921 | 15359 | 2321 | Original tweet | https://t.co/y70o6h3isq |
| 15 | 889278841981685760 | 25652 | 5637 | Original tweet | https://t.co/WpHvrQedPb |
| 16 | 888917238123831296 | 29611 | 4709 | Original tweet | https://t.co/chxruIOUJN |
| 17 | 888804989199671297 | 26080 | 4559 | Original tweet | https://t.co/HTQ77yNQ5K |
| 18 | 888554962724278272 | 20290 | 3732 | Original tweet | https://t.co/YnYAFCTTiK |
| 19 | 888078434458587136 | 22201 | 3653 | Original tweet | https://t.co/DK7iDPfuRX |
| 20 | 887705289381826560 | 30779 | 5609 | Original tweet | https://t.co/PhrUk20Q64 |
| 21 | 887517139158093824 | 46959 | 12082 | Original tweet | https://t.co/20VrLAA8ba |
| 22 | 887473957103951883 | 69871 | 18781 | Original tweet | https://t.co/cLyzpcUcMX |
| 23 | 887343217045368832 | 34222 | 10737 | Original tweet | https://t.co/WZqNqygEyV |
| 24 | 887101392804085760 | 31061 | 6167 | Original tweet | https://t.co/4Ad1jzJSdp |
| 25 | 886983233522544640 | 35859 | 8084 | Original tweet | https://t.co/I6oNy0CgiT |
| 26 | 886736880519319552 | 12306 | 3443 | Original tweet | https://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b |
| 27 | 886680336477933568 | 22798 | 4610 | Original tweet | https://t.co/BCoWue0abA |
| 28 | 886366144734445568 | 21524 | 3316 | Original tweet | https://t.co/RGE08MIJox |
| 29 | 886267009285017600 | 117 | 4 | Original tweet | n |
| 30 | 886258384151887873 | 28469 | 6523 | Original tweet | https://t.co/xZDA9Qsq1O |
| 31 | 886054160059072513 | 0 | 108 | Original tweet | https://t.co/WxwJmvjfxo |
| 32 | 885984800019947520 | 33382 | 7097 | Original tweet | https://t.co/BuveP0uMF1 |
| 33 | 885528943205470208 | 36689 | 6683 | Original tweet | https://t.co/tp1kQ8i9JF |
| 34 | 885518971528720385 | 20788 | 3899 | Original tweet | https://t.co/gzLHboL7Sk |
| 35 | 885311592912609280 | 0 | 19297 | Original tweet | https://t.co/SATN4If5H5 |
| 36 | 885167619883638784 | 22367 | 4556 | Original tweet | https://t.co/44ItaMubBf |
| 37 | 884925521741709313 | 68152 | 16439 | Original tweet | https://t.co/MYJvdlNRVa |
| 38 | 884876753390489601 | 28514 | 6096 | Original tweet | https://t.co/74TKAUsLkO |
| 39 | 884562892145688576 | 24765 | 5100 | Original tweet | https://t.co/1r4MFCbCX5 |
| 40 | 884441805382717440 | 27478 | 5856 | Original tweet | https://t.co/vvBOcC2VdC |
| 41 | 884247878851493888 | 74423 | 21298 | Original tweet | https://t.co/uF3pQ8Wubj |
| 42 | 884162670584377345 | 20771 | 3128 | Original tweet | https://t.co/YSI00BzTBZ |
| 43 | 883838122936631299 | 22349 | 3586 | Original tweet | https://t.co/V85xujjDDY |
| 44 | 883482846933004288 | 46860 | 10407 | Original tweet | https://t.co/qjrljjt948 |
| 45 | 883360690899218434 | 22986 | 3825 | Original tweet | https://t.co/rf661IFEYP |
| 46 | 883117836046086144 | 37914 | 6949 | Original tweet | https://t.co/Se5fZ9wp5E |
| 47 | 882992080364220416 | 24445 | 4122 | Original tweet | https://t.co/tyER0KpdXj |
| 48 | 882762694511734784 | 28903 | 5134 | Original tweet | https://t.co/D43I96SlVu |
| 49 | 882627270321602560 | 28382 | 6342 | Original tweet | https://t.co/Nx52PGwH94 |
| 50 | 882268110199369728 | 45880 | 12118 | Original tweet | https://t.co/fYP5RlutfA |
| 51 | 882045870035918850 | 29900 | 5203 | Original tweet | https://t.co/zeDpnsKX7w |
| 52 | 881906580714921986 | 24773 | 3533 | Original tweet | https://t.co/503CgWbhxQ |
| 53 | 881666595344535552 | 51522 | 11099 | Original tweet | https://t.co/7CSWCl8I6s |
| 54 | 881633300179243008 | 129 | 7 | Original tweet | s |
| 55 | 881536004380872706 | 50199 | 16570 | Original tweet | https://t.co/ghXBIIeQZF |
| 56 | 881268444196462592 | 23501 | 5358 | Original tweet | https://t.co/cgwJwowTMC |
| 57 | 880935762899988482 | 17346 | 2886 | Original tweet | https://t.co/D0wb1GlKAt |
| 58 | 880872448815771648 | 21734 | 3989 | Original tweet | https://t.co/WiAMbTkDPf |
| 59 | 880465832366813184 | 29075 | 6546 | Original tweet | https://t.co/4VsFysDmiw |
| 60 | 880221127280381952 | 27640 | 4436 | Original tweet | https://t.co/fUod0tVmvK |
| 61 | 880095782870896641 | 28150 | 4533 | Original tweet | https://t.co/HauE8M3Bu4 |
| 62 | 879862464715927552 | 22667 | 3642 | Original tweet | https://t.co/Qh5aEkRQm9 |
| 63 | 879674319642796034 | 315 | 10 | Original tweet | d |
| 64 | 879492040517615616 | 23822 | 3323 | Original tweet | https://t.co/IxM9IMKQq8 |
| 65 | 879415818425184262 | 107956 | 45849 | Original tweet | https://t.co/UDT7ZkcTgY |
| 66 | 879376492567855104 | 17099 | 3261 | Original tweet | https://t.co/0gOi601EAa |
| 67 | 879130579576475649 | 0 | 7181 | Original tweet | https://… |
| 68 | 879050749262655488 | 23022 | 4941 | Original tweet | https://t.co/2mJCDEJWdD |
| 69 | 879008229531029506 | 19317 | 2812 | Original tweet | https://t.co/YDtpCjIPKN |
| 70 | 878776093423087618 | 19763 | 4319 | Original tweet | https://t.co/lNZwgNO4gS |
| 71 | 878604707211726852 | 30931 | 7582 | Original tweet | https://t.co/9uABQXgjwa |
| 72 | 878404777348136964 | 0 | 1349 | Original tweet | https:/… |
| 73 | 878316110768087041 | 0 | 6965 | Original tweet | https://t.co/i… |
| 74 | 878281511006478336 | 7913 | 1349 | Original tweet | https://t.co/245xJJElsY https://t.co/lUiQH219v6 |
| 75 | 878057613040115712 | 42876 | 7181 | Original tweet | https://t.co/cwtWnHMVpe |
| 76 | 877736472329191424 | 71144 | 17300 | Original tweet | https://t.co/lsPyyAiF1r |
| 77 | 877611172832227328 | 0 | 83 | Original tweet | https://t.co/dJx4Gzc50G |
| 78 | 877556246731214848 | 23258 | 3994 | Original tweet | https://t.co/OYdDlfOGXP |
| 79 | 877316821321428993 | 27907 | 5414 | Original tweet | https://t.co/SHRTIo5pxc |
| 80 | 877201837425926144 | 27755 | 5880 | Original tweet | https://t.co/4g4cfj3P4Y |
| 81 | 876838120628539392 | 21125 | 3506 | Original tweet | https://t.co/j211oCDRs6 |
| 82 | 876537666061221889 | 23869 | 4800 | Original tweet | https://t.co/8yoc1CNTsu |
| 83 | 876484053909872640 | 19163 | 2511 | Original tweet | https://t.co/26BXueUgbs |
| 84 | 876120275196170240 | 28490 | 4903 | Original tweet | https://t.co/ejExJFq3ek |
| 85 | 875747767867523072 | 25773 | 4497 | Original tweet | https://t.co/V2WlACRJCN |
| 86 | 875144289856114688 | 22185 | 5081 | Original tweet | https://t.co/ogith9ejNj |
| 87 | 875097192612077568 | 27997 | 6342 | Original tweet | https://t.co/PFp4MghzBW |
| 88 | 875021211251597312 | 26022 | 4922 | Original tweet | https://t.co/brCQoqc8AW |
| 89 | 874680097055178752 | 28439 | 4875 | Original tweet | https://t.co/lZhtizkURD |
| 90 | 874434818259525634 | 0 | 15546 | Original tweet | https://t.c… |
| 91 | 874296783580663808 | 26651 | 4308 | Original tweet | https://t.co/0YplNnSMEm |
| 92 | 874057562936811520 | 23134 | 4125 | Original tweet | https://t.co/pwY9PQhtP2 |
| 93 | 874012996292530176 | 35501 | 11007 | Original tweet | https://t.co/XBE0evJZ6V |
| 94 | 873697596434513921 | 0 | 12518 | Original tweet | https://t.co/r28jFx9uyF |
| 95 | 873580283840344065 | 24837 | 4143 | Original tweet | https://t.co/mNuMH9400n |
| 96 | 873337748698140672 | 0 | 1667 | Original tweet | https:/… |
| 97 | 873213775632977920 | 7467 | 1667 | Original tweet | https://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ |
| 98 | 872967104147763200 | 28031 | 5669 | Original tweet | https://t.co/EMYIdoblMR |
| 99 | 872820683541237760 | 15029 | 3884 | Original tweet | https://t.co/17FVMl4VZ5 |
| 100 | 872668790621863937 | 0 | 31 | Original tweet | … |
| 101 | 872620804844003328 | 21309 | 3911 | Original tweet | https://t.co/lUcpnZDPz9 |
| 102 | 872486979161796608 | 41606 | 9429 | Original tweet | https://t.co/BZHiKx3FpQ |
| 103 | 872261713294495745 | 35085 | 6649 | Original tweet | https://t.co/ejHvGDfWoa |
| 104 | 872122724285648897 | 35324 | 8549 | Original tweet | https://t.co/PKSpmiefwN |
| 105 | 871879754684805121 | 39090 | 11918 | Original tweet | https://t.co/uK6PNyeh9w |
| 106 | 871762521631449091 | 20787 | 3678 | Original tweet | https://t.co/AiVljI6QCg |
| 107 | 871515927908634625 | 20730 | 3628 | Original tweet | https://t.co/PR7B7w1rUw |
| 108 | 871166179821445120 | 0 | 5991 | Original tweet | https://t.co/X… |
| 109 | 871102520638267392 | 21461 | 5764 | Original tweet | https://t.co/AbBLh2FZCH |
| 110 | 871032628920680449 | 23255 | 3999 | Original tweet | https://t.co/noNpY2Laoo |
| 111 | 870804317367881728 | 33791 | 6393 | Original tweet | https://t.co/GCD1JccCyi |
| 112 | 870726314365509632 | 121 | 3 | Original tweet | s |
| 113 | 870656317836468226 | 12819 | 2817 | Original tweet | https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 |
| 114 | 870374049280663552 | 85011 | 27680 | Original tweet | https://t.co/T1xlgaPujm |
| 115 | 870308999962521604 | 22453 | 4384 | Original tweet | https://t.co/MVQCzrF1g9 |
| 116 | 870063196459192321 | 37771 | 8840 | Original tweet | https://t.co/apVOyDgOju |
| 117 | 869988702071779329 | 0 | 25661 | Original tweet | … |
| 118 | 869772420881756160 | 43710 | 10663 | Original tweet | https://t.co/HciEaJkC4D |
| 119 | 869702957897576449 | 29116 | 6728 | Original tweet | https://t.co/vmCu3PFCQq |
| 120 | 869596645499047938 | 16476 | 3327 | Original tweet | https://t.co/DsA2hwXAJo |
| 121 | 869227993411051520 | 21112 | 4023 | Original tweet | https://t.co/IoR3n1fiiQ |
| 122 | 868880397819494401 | 55098 | 12518 | Original tweet | https://t.co/r28jFx9uyF |
| 123 | 868639477480148993 | 0 | 2240 | Original tweet | https://… |
| 124 | 868622495443632128 | 28295 | 6275 | Original tweet | https://t.co/yeaH8Ej5eM |
| 125 | 868552278524837888 | 10539 | 2240 | Original tweet | https://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi |
| 126 | 867900495410671616 | 24964 | 4439 | Original tweet | https://t.co/JMhDNv5wXZ |
| 127 | 867774946302451713 | 35179 | 7788 | Original tweet | https://t.co/ZYg3NZGICa |
| 128 | 867421006826221569 | 16755 | 2697 | Original tweet | https://t.co/XZlZKd73go |
| 129 | 867072653475098625 | 0 | 135 | Original tweet | https://t.co/nRCdq4g9gG |
| 130 | 867051520902168576 | 33420 | 8425 | Original tweet | https://t.co/M5Rz0R8SIQ |
| 131 | 866816280283807744 | 0 | 32883 | Original tweet | https://t.co/wk7T… |
| 132 | 866720684873056260 | 20888 | 5168 | Original tweet | https://t.co/Q8mVwWN3f4 |
| 133 | 866686824827068416 | 20070 | 3727 | Original tweet | https://t.co/9b9J46E86Z |
| 134 | 866450705531457537 | 106827 | 32883 | Original tweet | https://t.co/wk7TfysWHr |
| 135 | 866334964761202691 | 54720 | 15546 | Original tweet | https://t.co/W86h5dgR6c |
| 136 | 866094527597207552 | 0 | 8952 | Original tweet | https://t.co/ORiK… |
| 137 | 865718153858494464 | 26640 | 6008 | Original tweet | https://t.co/pozUoHLkGg |
| 138 | 865359393868664832 | 27530 | 5384 | Original tweet | https://t.co/g20EmqK7vc |
| 139 | 865006731092295680 | 29063 | 8209 | Original tweet | https://t.co/LbkG5CiM7o |
| 140 | 864873206498414592 | 33651 | 9361 | Original tweet | https://t.co/wr3xsjeCIR |
| 141 | 864279568663928832 | 15195 | 3266 | Original tweet | https://t.co/S2HdmFFPck |
| 142 | 864197398364647424 | 31459 | 9616 | Original tweet | https://t.co/cPq9fYvkzr |
| 143 | 863907417377173506 | 21477 | 4441 | Original tweet | https://t.co/ht47njyZ64 |
| 144 | 863553081350529029 | 15935 | 4489 | Original tweet | https://t.co/tordvmaaop |
| 145 | 863471782782697472 | 0 | 2687 | Original tweet | https://… |
| 146 | 863432100342583297 | 24829 | 5664 | Original tweet | https://t.co/fGQUzR8w3H |
| 147 | 863427515083354112 | 2363 | 105 | Original tweet | 0 |
| 148 | 863079547188785154 | 9094 | 1195 | Original tweet | https://t.co/lVU5GyNFen |
| 149 | 863062471531167744 | 8945 | 2687 | Original tweet | https://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt |
| 150 | 862831371563274240 | 20011 | 5457 | Original tweet | https://t.co/ixOFQ1tfqE |
| 151 | 862722525377298433 | 17779 | 3809 | Original tweet | https://t.co/Eme9Uar6v2 |
| 152 | 862457590147678208 | 21492 | 5388 | Original tweet | https://t.co/jvSNASweNb |
| 153 | 862096992088072192 | 66437 | 21840 | Original tweet | https://t.co/nvZyyrp0kd |
| 154 | 861769973181624320 | 0 | 37911 | Original tweet | https://t.co/f1h2Fsalv9 |
| 155 | 861383897657036800 | 37744 | 11528 | Original tweet | https://t.co/QFRlbZw4Z1 |
| 156 | 861288531465048066 | 18032 | 4479 | Original tweet | https://t.co/SqKJPwbQ2g |
| 157 | 861005113778896900 | 17538 | 4119 | Original tweet | https://t.co/jH6EN9cEn6 |
| 158 | 860981674716409858 | 0 | 2334 | Original tweet | https://t… |
| 159 | 860924035999428608 | 0 | 882 | Original tweet | https://t.co/6n8hzNihJ9 |
| 160 | 860563773140209665 | 7878 | 2334 | Original tweet | https://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt |
| 161 | 860524505164394496 | 24678 | 5698 | Original tweet | https://t.co/C2zHcNIu4I |
| 162 | 860276583193509888 | 19154 | 3745 | Original tweet | https://t.co/xJo6S2sfsN |
| 163 | 860184849394610176 | 17474 | 6295 | Original tweet | https://t.co/upRYxG4KbG |
| 164 | 860177593139703809 | 0 | 33421 | Original tweet | https://t.c… |
| 165 | 859924526012018688 | 20021 | 4349 | Original tweet | https://t.co/g8vpXFzw29 |
| 166 | 859851578198683649 | 16105 | 3780 | Original tweet | https://t.co/BqSttrTuIl |
| 167 | 859607811541651456 | 19476 | 1704 | Original tweet | https://t.co/BArWupFAn0 |
| 168 | 859196978902773760 | 75193 | 25661 | Original tweet | https://t.co/g2nSyGenG9 |
| 169 | 859074603037188101 | 35553 | 14740 | Original tweet | https://t.co/gEsymGTXCT |
| 170 | 858860390427611136 | 0 | 8805 | Original tweet | … |
| 171 | 858843525470990336 | 16304 | 3771 | Original tweet | https://t.co/cUeDMlHJbq |
| 172 | 858471635011153920 | 22640 | 5271 | Original tweet | https://t.co/8jOC4zhNxy |
| 173 | 858107933456039936 | 16524 | 3154 | Original tweet | https://t.co/QXA4sCXSDF |
| 174 | 857989990357356544 | 16952 | 2812 | Original tweet | https://t.co/sOl7cFaP5X |
| 175 | 857746408056729600 | 36021 | 11524 | Original tweet | https://t.co/7IFn3rkJai |
| 176 | 857393404942143489 | 6236 | 1785 | Original tweet | https://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV |
| 177 | 857263160327368704 | 21041 | 4934 | Original tweet | https://t.co/e3U4NReleC |
| 178 | 857214891891077121 | 242 | 20 | Original tweet | 0 |
| 179 | 857062103051644929 | 0 | 183 | Original tweet | https://t.co/… |
| 180 | 857029823797047296 | 19910 | 4364 | Original tweet | https://t.co/uMH5CLjXJu |
| 181 | 856602993587888130 | 0 | 11633 | Original tweet | … |
| 182 | 856543823941562368 | 17135 | 3131 | Original tweet | https://t.co/Bh9DtLhIBO |
| 183 | 856526610513747968 | 12446 | 2068 | Original tweet | https://t.co/p1hBHCmWnA |
| 184 | 856330835276025856 | 0 | 731 | Original tweet | h |
| 185 | 856288084350160898 | 545 | 17 | Original tweet | 0 |
| 186 | 856282028240666624 | 29086 | 6841 | Original tweet | https://t.co/GUefqUmZv8 |
| 187 | 855862651834028034 | 320 | 27 | Original tweet | h |
| 188 | 855860136149123072 | 4407 | 1058 | Original tweet | 0 |
| 189 | 855857698524602368 | 12498 | 2313 | Original tweet | https://t.co/sb73bV5Y7S |
| 190 | 855851453814013952 | 47844 | 19196 | Original tweet | https://t.co/cMhq16isel |
| 191 | 855818117272018944 | 28056 | 5943 | Original tweet | https://t.co/5BEjzT2Tth |
| 192 | 855459453768019968 | 31657 | 8987 | Original tweet | https://t.co/Xc7uj1C64x |
| 193 | 855245323840757760 | 0 | 6568 | Original tweet | … |
| 194 | 855138241867124737 | 0 | 50 | Original tweet | … |
| 195 | 854732716440526848 | 24188 | 6690 | Original tweet | https://t.co/nJztIEON5s |
| 196 | 854482394044301312 | 31131 | 7608 | Original tweet | https://t.co/AL4Ahm1Rm5 |
| 197 | 854365224396361728 | 20046 | 5159 | Original tweet | https://t.co/mdaQhhfpv6 |
| 198 | 854120357044912130 | 33911 | 8285 | Original tweet | https://t.co/oBL7LEJEzR |
| 199 | 854010172552949760 | 17169 | 3433 | Original tweet | https://t.co/TXdT3tmuYk |
| 200 | 853760880890318849 | 30414 | 6403 | Original tweet | https://t.co/yT4vw8y77x |
| 201 | 853639147608842240 | 37198 | 11265 | Original tweet | https://t.co/wiQZIsaWUe |
| 202 | 853299958564483072 | 16508 | 3928 | Original tweet | https://t.co/EX9Z3EXlVP |
| 203 | 852936405516943360 | 0 | 2243 | Original tweet | https://t… |
| 204 | 852912242202992640 | 9658 | 2037 | Original tweet | https://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U |
| 205 | 852672615818899456 | 15939 | 2388 | Original tweet | https://t.co/VlyBzOXHEW |
| 206 | 852553447878664193 | 17492 | 3885 | Original tweet | https://t.co/ArnxkyD2kC |
| 207 | 852311364735569921 | 35325 | 10961 | Original tweet | https://t.co/2d370P0OEg |
| 208 | 852226086759018497 | 21378 | 7570 | Original tweet | https://t.co/NP5JW8LnmW |
| 209 | 852189679701164033 | 12217 | 1741 | Original tweet | https://t.co/jrFzScKWEG |
| 210 | 851953902622658560 | 0 | 10706 | Original tweet | https://t.co/xo7FZFIAao |
| 211 | 851861385021730816 | 0 | 23 | Original tweet | https://t.co/bO0rThDlXI |
| 212 | 851591660324737024 | 17300 | 3819 | Original tweet | https://t.co/BMtfCmNbnS |
| 213 | 851464819735769094 | 25944 | 7855 | Original tweet | https://t.co/E4a0R9my1M |
| 214 | 851224888060895234 | 22090 | 6350 | Original tweet | https://t.co/iHYfZdz444 |
| 215 | 850753642995093505 | 33348 | 10352 | Original tweet | https://t.co/hLQ2Ilg2uN |
| 216 | 850380195714523136 | 13994 | 2915 | Original tweet | https://t.co/FXZQtBcnTO |
| 217 | 850333567704068097 | 3647 | 367 | Original tweet | S |
| 218 | 850145622816686080 | 17519 | 4244 | Original tweet | https://t.co/PCX25VV78l |
| 219 | 850019790995546112 | 21944 | 5459 | Original tweet | https://t.co/ecb3LvExde |
| 220 | 849776966551130114 | 32390 | 8404 | Original tweet | https://t.co/TCMC90mSOT |
| 221 | 849668094696017920 | 0 | 5513 | Original tweet | https… |
| 222 | 849412302885593088 | 17039 | 3487 | Original tweet | https://t.co/Uq3ChFgWA3 |
| 223 | 849336543269576704 | 12240 | 2101 | Original tweet | https://t.co/jqPk1BZ6xu |
| 224 | 849051919805034497 | 32617 | 7396 | Original tweet | https://t.co/r6GjO6MbZz |
| 225 | 848690551926992896 | 27104 | 4826 | Original tweet | https://t.co/UOE79zb6VU |
| 226 | 848324959059550208 | 20229 | 4037 | Original tweet | https://t.co/1pSqUbLQ5Z |
| 227 | 848213670039564288 | 8834 | 832 | Original tweet | t |
| 228 | 848212111729840128 | 17618 | 3444 | Original tweet | https://t.co/DkOBbwulw1 |
| 229 | 847978865427394560 | 0 | 3652 | Original tweet | https://t.c… |
| 230 | 847971574464610304 | 0 | 482 | Original tweet | https://t.co/0bYtoL7Wwt |
| 231 | 847962785489326080 | 25296 | 5730 | Original tweet | https://t.co/rcDs5LkiSj |
| 232 | 847842811428974592 | 5935 | 1522 | Original tweet | https://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 |
| 233 | 847617282490613760 | 7558 | 468 | Original tweet | 0 |
| 234 | 847606175596138505 | 20208 | 3774 | Original tweet | https://t.co/WTPBWT6Ux1 |
| 235 | 847251039262605312 | 22036 | 4800 | Original tweet | https://t.co/zhbRIZQgnq |
| 236 | 847157206088847362 | 21588 | 6572 | Original tweet | https://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r |
| 237 | 847116187444137987 | 23108 | 3583 | Original tweet | https://t.co/EeeErAbso0 |
| 238 | 846874817362120707 | 21685 | 4404 | Original tweet | https://t.co/P7PBGqrKSe |
| 239 | 846514051647705089 | 48410 | 13076 | Original tweet | https://t.co/cFAasDXauK |
| 240 | 846505985330044928 | 15304 | 3492 | Original tweet | https://t.co/GJ8rozumsy |
| 241 | 846153765933735936 | 34394 | 10226 | Original tweet | https://t.co/a0CkS5ExFR |
| 242 | 846139713627017216 | 33188 | 10972 | Original tweet | https://t.co/4ctgpGcqAd |
| 243 | 846042936437604353 | 17256 | 3224 | Original tweet | https://t.co/0hLkztpiOW |
| 244 | 845812042753855489 | 31737 | 9894 | Original tweet | https://t.co/TLNexlqzXP |
| 245 | 845677943972139009 | 27154 | 5365 | Original tweet | https://t.co/z30iQLiXNo |
| 246 | 845459076796616705 | 0 | 15071 | Original tweet | https://… |
| 247 | 845397057150107648 | 8241 | 2072 | Original tweet | https://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o |
| 248 | 845306882940190720 | 25225 | 6039 | Original tweet | https://t.co/7mPCF4ZwEk |
| 249 | 845098359547420673 | 0 | 8640 | Original tweet | https://t… |
| 250 | 844979544864018432 | 14738 | 2909 | Original tweet | https://t.co/a5OaJeRl9B |
| 251 | 844973813909606400 | 16361 | 3617 | Original tweet | https://t.co/B1iBuSq3hr |
| 252 | 844704788403113984 | 42022 | 11633 | Original tweet | https://t.co/2RYiLGHuPN |
| 253 | 844580511645339650 | 17871 | 3533 | Original tweet | https://t.co/gAzPqT7uyk |
| 254 | 844223788422217728 | 14753 | 2450 | Original tweet | https://t.co/H38HB6rBTx |
| 255 | 843981021012017153 | 16327 | 3285 | Original tweet | https://t.co/Gu5wHx3CBd |
| 256 | 843856843873095681 | 23211 | 5220 | Original tweet | https://t.co/f5C5l5wa0e |
| 257 | 843604394117681152 | 18310 | 3081 | Original tweet | https://t.co/wHUElL84RC |
| 258 | 843235543001513987 | 23315 | 6852 | Original tweet | https://t.co/DKwp2ByMsL |
| 259 | 842892208864923648 | 0 | 56625 | Original tweet | https://t.co/DkBYaCAg2d |
| 260 | 842846295480000512 | 16440 | 4023 | Original tweet | https://t.co/nFpNgCWWYs |
| 261 | 842765311967449089 | 7321 | 1439 | Original tweet | https://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l |
| 262 | 842535590457499648 | 19637 | 3937 | Original tweet | https://t.co/Tf0rh9ZgZe |
| 263 | 842163532590374912 | 26569 | 6568 | Original tweet | https://t.co/o6E0hB3xZl |
| 264 | 842115215311396866 | 15204 | 3386 | Original tweet | https://t.co/iDK4OyQJoy |
| 265 | 841833993020538882 | 0 | 17504 | Original tweet | https://t.co/btzf1zTDeQ |
| 266 | 841680585030541313 | 27854 | 8748 | Original tweet | https://t.co/qUOijSlPnj |
| 267 | 841439858740625411 | 13755 | 4168 | Original tweet | https://t.co/SVNMdFqKDL |
| 268 | 841320156043304961 | 21402 | 6080 | Original tweet | https://t.co/cEORXhwZ5K |
| 269 | 841314665196081154 | 17305 | 5312 | Original tweet | https://t.co/9lVAqDEvZ5 |
| 270 | 841077006473256960 | 24926 | 5991 | Original tweet | https://t.co/XKJrmO4fAQ |
| 271 | 840761248237133825 | 0 | 1972 | Original tweet | https:/… |
| 272 | 840728873075638272 | 0 | 18285 | Original tweet | https://… |
| 273 | 840698636975636481 | 197 | 3 | Original tweet | n |
| 274 | 840696689258311684 | 13377 | 1116 | Original tweet | https://t.co/2gclc1MNr7 |
| 275 | 840632337062862849 | 9761 | 1972 | Original tweet | https://t.co/JesYTzb1Jo https://t.co/5cncH08G1o |
| 276 | 840370681858686976 | 17918 | 5146 | Original tweet | https://t.co/76iL7JUQdG |
| 277 | 840268004936019968 | 20950 | 6497 | Original tweet | https://t.co/8Wsr6b4RjE |
| 278 | 839990271299457024 | 14640 | 2597 | Original tweet | https://t.co/r7W1NbkOtr |
| 279 | 839549326359670784 | 29957 | 8805 | Original tweet | https://t.co/GuxEXTdnMu |
| 280 | 839290600511926273 | 0 | 158 | Original tweet | https://t.co/act3duiqbL |
| 281 | 839239871831150596 | 29684 | 7422 | Original tweet | https://t.co/JEXB9RwBmm |
| 282 | 838952994649550848 | 21289 | 4505 | Original tweet | https://t.co/ngAxYLVYHP |
| 283 | 838921590096166913 | 12183 | 2357 | Original tweet | https://t.co/oXVu9pNZZv |
| 284 | 838916489579200512 | 0 | 38 | Original tweet | https://t.co/6UCGFczlOI |
| 285 | 838831947270979586 | 0 | 12643 | Original tweet | https:… |
| 286 | 838561493054533637 | 11892 | 1504 | Original tweet | https://t.co/0av1PEehFI |
| 287 | 838476387338051585 | 24664 | 5484 | Original tweet | https://t.co/51FXNuouHI |
| 288 | 838201503651401729 | 0 | 11525 | Original tweet | https://t.co/EM… |
| 289 | 838150277551247360 | 1824 | 370 | Original tweet | 0 |
| 290 | 838085839343206401 | 150 | 0 | Original tweet | 0 |
| 291 | 838083903487373313 | 19183 | 3582 | Original tweet | https://t.co/meUc8jufAO |
| 292 | 837820167694528512 | 37277 | 8952 | Original tweet | https://t.co/ORiK6jlgdH |
| 293 | 837482249356513284 | 4204 | 495 | Original tweet | https://t.co/Z3LAaV2pKz |
| 294 | 837471256429613056 | 13967 | 2631 | Original tweet | https://t.co/u51tzXSVi3 |
| 295 | 837366284874571778 | 23074 | 6005 | Original tweet | https://t.co/uNmxbL2lns |
| 296 | 837110210464448512 | 17480 | 2731 | Original tweet | https://t.co/7pUjwe8X6B |
| 297 | 837012587749474308 | 0 | 88 | Original tweet | https://t.co/rHLoU5gS30 |
| 298 | 836989968035819520 | 13879 | 2610 | Original tweet | https://t.co/beWUzGVKRM |
| 299 | 836753516572119041 | 21029 | 5237 | Original tweet | https://t.co/GZmNEdyoJY |
| 300 | 836677758902222849 | 13782 | 2522 | Original tweet | https://t.co/fGAPAsxjKs |
| 301 | 836648853927522308 | 0 | 626 | Original tweet | … |
| 302 | 836397794269200385 | 0 | 31314 | Original tweet | https:/… |
| 303 | 836380477523124226 | 16037 | 3337 | Original tweet | https://t.co/W4KffrdX3Q |
| 304 | 836260088725786625 | 23177 | 4850 | Original tweet | https://t.co/gA2GECjiQD |
| 305 | 836001077879255040 | 20924 | 4935 | Original tweet | https://t.co/uRdKlFArQE |
| 306 | 835685285446955009 | 0 | 9327 | Original tweet | https://t.co/… |
| 307 | 835574547218894849 | 19447 | 4121 | Original tweet | https://t.co/cVQEnUQd8q |
| 308 | 835536468978302976 | 0 | 1939 | Original tweet | https://… |
| 309 | 835309094223372289 | 0 | 24013 | Original tweet | https://t.co/dsv4xAtfv7 |
| 310 | 835297930240217089 | 17847 | 3381 | Original tweet | https://t.co/1U0z6r5LSO |
| 311 | 835264098648616962 | 8503 | 1939 | Original tweet | https://t.co/FYFyHh7rir https://t.co/IiB7ggduoU |
| 312 | 835246439529840640 | 2259 | 83 | Original tweet | o |
| 313 | 835172783151792128 | 28552 | 6516 | Original tweet | https://t.co/8fX2VkExnL |
| 314 | 835152434251116546 | 24574 | 3443 | Original tweet | https://t.co/YbEJPkg4Ag |
| 315 | 834931633769889797 | 11838 | 1878 | Original tweet | https://t.co/jTe7Y6P0HK |
| 316 | 834786237630337024 | 22943 | 6159 | Original tweet | https://t.co/3FIqvumEXE |
| 317 | 834574053763584002 | 14993 | 2882 | Original tweet | https://t.co/UtEVnQ1ZPg |
| 318 | 834477809192075265 | 0 | 12224 | Original tweet | … |
| 319 | 834458053273591808 | 10512 | 1899 | Original tweet | https://t.co/8ZOZS2FSJe |
| 320 | 834209720923721728 | 22594 | 5476 | Original tweet | https://t.co/FaeinVjzTZ |
| 321 | 834167344700198914 | 17194 | 4130 | Original tweet | https://t.co/o3bhLguymB |
| 322 | 834089966724603904 | 10971 | 2427 | Original tweet | https://t.co/ffIH2WxwF0 |
| 323 | 834086379323871233 | 14296 | 2512 | Original tweet | https://t.co/5KmXPIGgAG |
| 324 | 833863086058651648 | 14661 | 2729 | Original tweet | https://t.co/HDloTYilWZ |
| 325 | 833826103416520705 | 16728 | 3904 | Original tweet | https://t.co/WTzhtfevKY |
| 326 | 833732339549220864 | 0 | 251 | Original tweet | … |
| 327 | 833722901757046785 | 22585 | 3636 | Original tweet | https://t.co/w1MQWO2PET |
| 328 | 833479644947025920 | 16258 | 2357 | Original tweet | https://t.co/YGeSpyN8Gu |
| 329 | 833124694597443584 | 22133 | 5513 | Original tweet | https://t.co/zD97KYFaFa |
| 330 | 832998151111966721 | 14549 | 2522 | Original tweet | https://t.co/QX1h0oqMz0 |
| 331 | 832769181346996225 | 0 | 43 | Original tweet | https://t.co/zFEfMTaHqU |
| 332 | 832757312314028032 | 18423 | 4127 | Original tweet | https://t.co/On7muWnWSQ |
| 333 | 832682457690300417 | 13017 | 3368 | Original tweet | https://t.co/8YlD5lxPbQ |
| 334 | 832645525019123713 | 3195 | 594 | Original tweet | https://t.co/dp5h9bCwU7 |
| 335 | 832636094638288896 | 17379 | 3220 | Original tweet | https://t.co/Y4DZx2UWsr |
| 336 | 832397543355072512 | 13126 | 2548 | Original tweet | https://t.co/nqAJGCHKEt |
| 337 | 832369877331693569 | 18792 | 3652 | Original tweet | https://t.co/Dhdx5HnQ4d |
| 338 | 832273440279240704 | 12385 | 2673 | Original tweet | https://t.co/SHAb1wHjMz |
| 339 | 832215909146226688 | 0 | 7069 | Original tweet | https://t.co/yBO5wu… |
| 340 | 832215726631055365 | 0 | 10723 | Original tweet | https://t.co/rLHGx3VAF3 |
| 341 | 832088576586297345 | 72 | 3 | Original tweet | 5 |
| 342 | 832040443403784192 | 0 | 11131 | Original tweet | https://t.co/guDkLrX8zV |
| 343 | 832032802820481025 | 13887 | 4746 | Original tweet | https://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M |
| 344 | 831939777352105988 | 26404 | 7031 | Original tweet | https://t.co/k9bzgyVdUT |
| 345 | 831926988323639298 | 369 | 39 | Original tweet | 0 |
| 346 | 831911600680497154 | 30380 | 7458 | Original tweet | https://t.co/l38R6IZNNg |
| 347 | 831670449226514432 | 11469 | 2059 | Original tweet | https://t.co/u6p4LxzHKg |
| 348 | 831650051525054464 | 7908 | 2243 | Original tweet | https://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO |
| 349 | 831552930092285952 | 9872 | 2632 | Original tweet | https://t.co/BCbmFYLrse |
| 350 | 831322785565769729 | 10042 | 1744 | Original tweet | https://t.co/Xc0gyovCtK |
| 351 | 831315979191906304 | 7117 | 1264 | Original tweet | https://t.co/jd6lYhfdH4 |
| 352 | 831309418084069378 | 12819 | 2786 | Original tweet | https://t.co/ghqMfxxa4V |
| 353 | 831262627380748289 | 13066 | 2350 | Original tweet | https://t.co/zqR5XKMpuY |
| 354 | 830956169170665475 | 8735 | 1735 | Original tweet | https://t.co/X4vNEzAod5 |
| 355 | 830583320585068544 | 73397 | 19297 | Original tweet | https://t.co/SATN4If5H5 |
| 356 | 830173239259324417 | 0 | 6554 | Original tweet | … |
| 357 | 830097400375152640 | 10804 | 3455 | Original tweet | https://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW |
| 358 | 829878982036299777 | 0 | 5757 | Original tweet | https://t.co/QV5nx6otZR |
| 359 | 829861396166877184 | 13441 | 2243 | Original tweet | https://t.co/xeudgDXmTU |
| 360 | 829501995190984704 | 34913 | 12224 | Original tweet | https://t.co/Xw9JbJHTul |
| 361 | 829449946868879360 | 11519 | 2329 | Original tweet | https://t.co/fmRS43mWQB |
| 362 | 829374341691346946 | 38074 | 10706 | Original tweet | https://t.co/xo7FZFIAao |
| 363 | 829141528400556032 | 26952 | 8530 | Original tweet | https://t.co/rHwfySggqR |
| 364 | 829011960981237760 | 58302 | 18627 | Original tweet | https://t.co/U50RlRw4is |
| 365 | 828801551087042563 | 0 | 3901 | Original tweet | https… |
| 366 | 828770345708580865 | 28085 | 6746 | Original tweet | https://t.co/AqPTHYUBFz |
| 367 | 828708714936930305 | 40241 | 12882 | Original tweet | https://t.co/vst2SEVJO3 |
| 368 | 828650029636317184 | 10467 | 1544 | Original tweet | https://t.co/bZ4axuH6OK |
| 369 | 828409743546925057 | 6898 | 1305 | Original tweet | https://t.co/ZH5CvRlCxt |
| 370 | 828408677031882754 | 8398 | 1477 | Original tweet | https://t.co/7WFLKli2T3 |
| 371 | 828381636999917570 | 13864 | 2554 | Original tweet | https://t.co/iCk7zstRA9 |
| 372 | 828376505180889089 | 8112 | 1216 | Original tweet | https://t.co/HKBVZqXFNR |
| 373 | 828372645993398273 | 13756 | 3344 | Original tweet | https://t.co/JcTuUcyYNS |
| 374 | 828361771580813312 | 2408 | 195 | Original tweet | n |
| 375 | 828046555563323392 | 12923 | 3260 | Original tweet | https://t.co/O37z4jaMG9 |
| 376 | 828011680017821696 | 11411 | 2451 | Original tweet | https://t.co/rkhCFfDtxB |
| 377 | 827933404142436356 | 22180 | 5987 | Original tweet | https://t.co/j8D3PQJvpJ |
| 378 | 827653905312006145 | 16983 | 3433 | Original tweet | https://t.co/eAA8lratd3 |
| 379 | 827600520311402496 | 8143 | 1082 | Original tweet | https://t.co/vrppizPGdb |
| 380 | 827324948884643840 | 17523 | 3510 | Original tweet | https://t.co/UU3KqQF5n5 |
| 381 | 827228250799742977 | 0 | 13517 | Original tweet | https://… |
| 382 | 827199976799354881 | 11659 | 2579 | Original tweet | https://t.co/UkyQibIBzZ |
| 383 | 826958653328592898 | 23767 | 5757 | Original tweet | https://t.co/QV5nx6otZR |
| 384 | 826848821049180160 | 40325 | 11878 | Original tweet | https://t.co/WS0Gha8vRh |
| 385 | 826615380357632002 | 0 | 4521 | Original tweet | https:/… |
| 386 | 826598799820865537 | 5637 | 292 | Original tweet | g |
| 387 | 826598365270007810 | 11117 | 2709 | Original tweet | https://t.co/YprN62Z74I |
| 388 | 826476773533745153 | 20275 | 4821 | Original tweet | https://t.co/YIV8sw8xkh |
| 389 | 826240494070030336 | 14614 | 2965 | Original tweet | https://t.co/srXL2s868C |
| 390 | 826204788643753985 | 5361 | 1075 | Original tweet | https://t.co/1httNYrCeW https://t.co/KvaM8j3jhX |
| 391 | 826115272272650244 | 17299 | 3599 | Original tweet | https://t.co/6gHoGah9nm |
| 392 | 825876512159186944 | 11525 | 2146 | Original tweet | https://t.co/feNwTq12S5 |
| 393 | 825829644528148480 | 14025 | 2848 | Original tweet | https://t.co/YimNdkZrhM |
| 394 | 825535076884762624 | 56413 | 19669 | Original tweet | https://t.co/6ao80wIpV1 |
| 395 | 825147591692263424 | 20181 | 5244 | Original tweet | https://t.co/AyBEmx56MD |
| 396 | 825120256414846976 | 0 | 1483 | Original tweet | https:/… |
| 397 | 825026590719483904 | 7020 | 1483 | Original tweet | https://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc |
| 398 | 824796380199809024 | 0 | 6288 | Original tweet | https://t.co/ivPWhspN3E |
| 399 | 824775126675836928 | 16508 | 4069 | Original tweet | https://t.co/F0VWg2GztI |
| 400 | 824663926340194305 | 11113 | 1993 | Original tweet | https://t.co/A5Mx4h1FSM |
| 401 | 824325613288833024 | 12999 | 11848 | Original tweet | https://t.co/wBmc7OaGvS |
| 402 | 824297048279236611 | 16625 | 4463 | Original tweet | https://t.co/EmJbG0skLt |
| 403 | 824025158776213504 | 5255 | 679 | Original tweet | https://t.co/50qq2DItPW |
| 404 | 823939628516474880 | 11755 | 3123 | Original tweet | https://t.co/m0hrATIEyw |
| 405 | 823719002937630720 | 0 | 12953 | Original tweet | https://t.co/T7Jr4Gw4sC |
| 406 | 823699002998870016 | 13826 | 2772 | Original tweet | https://t.co/yCydYURYEL |
| 407 | 823581115634085888 | 14376 | 3031 | Original tweet | https://t.co/6F5Rrp472U |
| 408 | 823333489516937216 | 777 | 31 | Original tweet | 0 |
| 409 | 823322678127919110 | 17437 | 4637 | Original tweet | https://t.co/stkJ377KK7 |
| 410 | 823269594223824897 | 0 | 11421 | Original tweet | https://t.co/rLi83ZyCL5 |
| 411 | 822975315408461824 | 19139 | 3958 | Original tweet | https://t.co/yUM8jYStuG |
| 412 | 822872901745569793 | 132810 | 48265 | Original tweet | https://t.co/nTz3FtorBc |
| 413 | 822859134160621569 | 14576 | 2622 | Original tweet | https://t.co/SSQE06XClS |
| 414 | 822647212903690241 | 0 | 7390 | Original tweet | https://t.co/liJGwMp17E |
| 415 | 822610361945911296 | 16327 | 3423 | Original tweet | https://t.co/mcagPeENIh |
| 416 | 822489057087389700 | 20083 | 7390 | Original tweet | https://t.co/liJGwMp17E |
| 417 | 822462944365645825 | 31800 | 17209 | Original tweet | https://t.co/M3hZGadUuO |
| 418 | 822244816520155136 | 38832 | 11421 | Original tweet | https://t.co/rLi83ZyCL5 |
| 419 | 822163064745328640 | 0 | 5571 | Original tweet | https:… |
| 420 | 821886076407029760 | 12582 | 2692 | Original tweet | https://t.co/djMep7mGkV |
| 421 | 821813639212650496 | 0 | 3839 | Original tweet | https://t.co/mH0IOyFdIG |
| 422 | 821765923262631936 | 9317 | 1899 | Original tweet | https://t.co/maDNMETA52 |
| 423 | 821522889702862852 | 8871 | 2030 | Original tweet | https://t.co/IzcaR3Nqyn |
| 424 | 821421320206483457 | 0 | 6470 | Original tweet | https://t.co… |
| 425 | 821407182352777218 | 13075 | 5053 | Original tweet | https://t.co/Xn5AQtiqzG |
| 426 | 821153421864615936 | 280 | 10 | Original tweet | e |
| 427 | 821149554670182400 | 9718 | 2320 | Original tweet | https://t.co/r8DxA8DYJ2 |
| 428 | 821107785811234820 | 10645 | 2487 | Original tweet | https://t.co/8SiwKDlRcl |
| 429 | 821044531881721856 | 14021 | 2636 | Original tweet | https://t.co/bryVdNaRcu |
| 430 | 820837357901512704 | 0 | 7733 | Original tweet | https://t.co/ii5eNX5… |
| 431 | 820749716845686786 | 34984 | 11525 | Original tweet | https://t.co/EMq8Ud6Ze1 |
| 432 | 820690176645140481 | 13518 | 3716 | Original tweet | https://t.co/NIYC820tmd |
| 433 | 820494788566847489 | 0 | 648 | Original tweet | https://t… |
| 434 | 820446719150292993 | 0 | 2980 | Original tweet | https://t.co/pbKOesr8Tg |
| 435 | 820314633777061888 | 3706 | 648 | Original tweet | https://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE |
| 436 | 820078625395449857 | 21979 | 7246 | Original tweet | https://t.co/wJZlpGFEbD |
| 437 | 820013781606658049 | 0 | 1369 | Original tweet | https://… |
| 438 | 819952236453363712 | 5927 | 1369 | Original tweet | https://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb |
| 439 | 819924195358416896 | 14305 | 5607 | Original tweet | https://t.co/XdRNXNYD4E |
| 440 | 819711362133872643 | 14916 | 3604 | Original tweet | https://t.co/m5fYxrO3IU |
| 441 | 819588359383371776 | 10606 | 2271 | Original tweet | https://t.co/52cItP0vIO |
| 442 | 819347104292290561 | 8008 | 1383 | Original tweet | https://t.co/8rUL99bX4W |
| 443 | 819238181065359361 | 2550 | 462 | Original tweet | https://t.co/MefMAZX2uv |
| 444 | 819227688460238848 | 25652 | 7733 | Original tweet | https://t.co/ii5eNX5LJT |
| 445 | 819015337530290176 | 0 | 42228 | Original tweet | https://t.co/AdPKrI8BZ1 |
| 446 | 819015331746349057 | 0 | 21794 | Original tweet | https://t.co/YOC1fHFCSb |
| 447 | 819006400881917954 | 49960 | 21794 | Original tweet | https://t.co/YOC1fHFCSb |
| 448 | 819004803107983360 | 95450 | 42228 | Original tweet | https://t.co/AdPKrI8BZ1 |
| 449 | 818646164899774465 | 0 | 24069 | Original tweet | https://t.co/hfi264QwYM |
| 450 | 818627210458333184 | 24597 | 8564 | Original tweet | https://t.co/I7bkhxBxUG |
| 451 | 818614493328580609 | 10971 | 2982 | Original tweet | https://t.co/FOF0hBDxP8 |
| 452 | 818588835076603904 | 0 | 7126 | Original tweet | https://t.co/nBJ5RE4yHb |
| 453 | 818536468981415936 | 12127 | 2873 | Original tweet | https://t.co/6fSVcn9HAU |
| 454 | 818307523543449600 | 0 | 9366 | Original tweet | https://t.co/LIhmM7i… |
| 455 | 818259473185828864 | 12197 | 2621 | Original tweet | https://t.co/rnkvT2kvib |
| 456 | 818145370475810820 | 13671 | 3014 | Original tweet | https://t.co/JlPug12E5Z |
| 457 | 817908911860748288 | 5356 | 906 | Original tweet | https://t.co/bbuKxk0fM8 |
| 458 | 817827839487737858 | 57622 | 31314 | Original tweet | https://t.co/q2BgNIi3OA |
| 459 | 817777686764523521 | 11901 | 3084 | Original tweet | https://t.co/m7isZrOBX7 |
| 460 | 817536400337801217 | 13105 | 3505 | Original tweet | https://t.co/jQUdvtdYMu |
| 461 | 817502432452313088 | 0 | 3917 | Original tweet | https:/… |
| 462 | 817423860136083457 | 38260 | 17504 | Original tweet | https://t.co/btzf1zTDeQ |
| 463 | 817415592588222464 | 6267 | 1131 | Original tweet | https://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 |
| 464 | 817181837579653120 | 0 | 9907 | Original tweet | https://t.co/MiMKtsLN6k |
| 465 | 817171292965273600 | 9690 | 2326 | Original tweet | https://t.co/56uBP28eqw |
| 466 | 817120970343411712 | 13367 | 3011 | Original tweet | https://t.co/kCLgD8687T |
| 467 | 817056546584727552 | 9517 | 1927 | Original tweet | https://t.co/r6SLVN2VUH |
| 468 | 816829038950027264 | 0 | 5496 | Original tweet | https://t.co/dgvTPZ9tgI |
| 469 | 816816676327063552 | 11071 | 2361 | Original tweet | https://t.co/dVVavqpeF9 |
| 470 | 816697700272001025 | 10905 | 2545 | Original tweet | https://t.co/WFt82XLyEF |
| 471 | 816450570814898180 | 33961 | 9366 | Original tweet | https://t.co/LIhmM7i70k |
| 472 | 816336735214911488 | 9564 | 2269 | Original tweet | https://t.co/nuJxtmlLcY |
| 473 | 816091915477250048 | 9927 | 2500 | Original tweet | https://t.co/tlfuZ25IMi |
| 474 | 816062466425819140 | 0 | 1207 | Original tweet | https://… |
| 475 | 816014286006976512 | 0 | 6154 | Original tweet | https://t.co/ghyT4Ubk1r |
| 476 | 815990720817401858 | 5545 | 1207 | Original tweet | https://t.co/r4W111FzAq https://t.co/fQpYuMKG3p |
| 477 | 815966073409433600 | 25057 | 9907 | Original tweet | https://t.co/MiMKtsLN6k |
| 478 | 815745968457060357 | 0 | 4797 | Original tweet | … |
| 479 | 815736392542261248 | 10937 | 2625 | Original tweet | https://t.co/gd9UlLOCQ0 |
| 480 | 815639385530101762 | 9161 | 1918 | Original tweet | https://t.co/bLZuOh9sKy |
| 481 | 815390420867969024 | 11467 | 4407 | Original tweet | https://t.co/9njRxyUd5L |
| 482 | 814986499976527872 | 8485 | 1505 | Original tweet | https://t.co/01vpuRDXQ8 |
| 483 | 814638523311648768 | 12511 | 3130 | Original tweet | https://t.co/0LdNjoiNbv |
| 484 | 814578408554463233 | 0 | 6750 | Original tweet | https:/… |
| 485 | 814530161257443328 | 9629 | 2156 | Original tweet | https://t.co/IOdgfnSE9G |
| 486 | 814153002265309185 | 32000 | 10080 | Original tweet | https://t.co/YIJo7X7K9J |
| 487 | 813944609378369540 | 0 | 3732 | Original tweet | https://t.co/aI7umZHIq7 |
| 488 | 813910438903693312 | 10342 | 2194 | Original tweet | https://t.co/z1VRj1cYZf |
| 489 | 813812741911748608 | 40402 | 16267 | Original tweet | https://t.co/uBnQTNEeGg |
| 490 | 813800681631023104 | 9300 | 2060 | Original tweet | https://t.co/OuaVvVkwJ1 |
| 491 | 813217897535406080 | 20783 | 8476 | Original tweet | https://t.co/DVYIZOnO81 |
| 492 | 813202720496779264 | 10192 | 2090 | Original tweet | https://t.co/cD967DjnIn |
| 493 | 813187593374461952 | 22085 | 5096 | Original tweet | https://t.co/rvSANEsQZJ |
| 494 | 813172488309972993 | 10384 | 2236 | Original tweet | https://t.co/bxGwkJa2kE |
| 495 | 813157409116065792 | 8588 | 2557 | Original tweet | https://t.co/hwhCbhCjnV |
| 496 | 813142292504645637 | 9361 | 2728 | Original tweet | https://t.co/KK4XQK9SPi |
| 497 | 813130366689148928 | 4968 | 513 | Original tweet | 0 |
| 498 | 813127251579564032 | 13242 | 3652 | Original tweet | https://t.co/BzITyGw3JA |
| 499 | 813112105746448384 | 11515 | 3225 | Original tweet | https://t.co/zfdaGZlweq |
| 500 | 813096984823349248 | 11694 | 4207 | Original tweet | https://t.co/soNL00XWVu |
| 501 | 813081950185472002 | 10989 | 3220 | Original tweet | https://t.co/PjulYEXTvg |
| 502 | 813066809284972545 | 8865 | 2276 | Original tweet | https://t.co/syuTXARdtN |
| 503 | 813051746834595840 | 23337 | 8503 | Original tweet | https://t.co/AIMF8ouzvl |
| 504 | 812781120811126785 | 8380 | 2191 | Original tweet | https://t.co/lXFM1l22bG |
| 505 | 812747805718642688 | 0 | 8067 | Original tweet | https://t.c… |
| 506 | 812709060537683968 | 7373 | 1665 | Original tweet | https://t.co/AbBDuGZUpp |
| 507 | 812503143955202048 | 6787 | 1424 | Original tweet | https://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 |
| 508 | 812466873996607488 | 8900 | 2231 | Original tweet | https://t.co/BAJrfPvtux |
| 509 | 812372279581671427 | 15224 | 4252 | Original tweet | https://t.co/gCnAeL2mvT |
| 510 | 811985624773361665 | 8102 | 1647 | Original tweet | https://t.co/sIB5C6FDop |
| 511 | 811744202451197953 | 8429 | 1884 | Original tweet | https://t.co/TZkiQZqwA6 |
| 512 | 811647686436880384 | 6215 | 872 | Original tweet | 0 |
| 513 | 811627233043480576 | 14265 | 3650 | Original tweet | https://t.co/IU8S0n4oxn |
| 514 | 811386762094317568 | 23302 | 7444 | Original tweet | https://t.co/aAUXzoxaBy |
| 515 | 810984652412424192 | 5927 | 1655 | Original tweet | https://t.co/98tB8y7y7t https://t.co/LouL5vdvxx |
| 516 | 810896069567610880 | 10093 | 2090 | Original tweet | https://t.co/zW1o0W4AYV |
| 517 | 810657578271330305 | 12192 | 3057 | Original tweet | https://t.co/MXd0AGDsRJ |
| 518 | 810284430598270976 | 39640 | 13369 | Original tweet | https://t.co/9p6ECXJMMu |
| 519 | 810254108431155201 | 16380 | 3901 | Original tweet | https://t.co/DrsrQkEfnb |
| 520 | 809920764300447744 | 17250 | 4521 | Original tweet | https://t.co/HIraYS1Bzo |
| 521 | 809808892968534016 | 0 | 5711 | Original tweet | https://t.co/xIfrsMNLBR |
| 522 | 809448704142938112 | 7727 | 1696 | Original tweet | https://t.co/EMdnCugNbo |
| 523 | 809220051211603969 | 22246 | 6554 | Original tweet | https://t.co/wHu15q2Q6p |
| 524 | 809084759137812480 | 14685 | 4046 | Original tweet | https://t.co/nadm8yWZ4h |
| 525 | 808838249661788160 | 11271 | 3536 | Original tweet | https://t.co/Zrrcw29o13 |
| 526 | 808733504066486276 | 8784 | 2509 | Original tweet | https://t.co/xQfrbNK3HD |
| 527 | 808501579447930884 | 12595 | 3007 | Original tweet | https://t.co/SQhyqrr8px |
| 528 | 808344865868283904 | 47281 | 24069 | Original tweet | https://t.co/hfi264QwYM |
| 529 | 808134635716833280 | 0 | 6961 | Original tweet | https://t.co/R6wJyC2Tey |
| 530 | 808106460588765185 | 9701 | 2525 | Original tweet | https://t.co/ANBpEYHaho |
| 531 | 808001312164028416 | 14015 | 4098 | Original tweet | https://t.co/O9iGgvfuzl |
| 532 | 807621403335917568 | 16236 | 4288 | Original tweet | https://t.co/qTRY2qX9y4 |
| 533 | 807106840509214720 | 107015 | 56625 | Original tweet | https://t.co/DkBYaCAg2d |
| 534 | 807059379405148160 | 0 | 8521 | Original tweet | https://t.co/vOBV1ZqVcX |
| 535 | 807010152071229440 | 14514 | 4418 | Original tweet | https://t.co/fhgP6vSfhX |
| 536 | 806629075125202948 | 75639 | 37911 | Original tweet | https://t.co/f1h2Fsalv9 |
| 537 | 806620845233815552 | 0 | 6426 | Original tweet | https://t.c… |
| 538 | 806576416489959424 | 5370 | 2230 | Original tweet | https://t.co/QrFkqgHR1G |
| 539 | 806542213899489280 | 11363 | 2752 | Original tweet | https://t.co/BCB87qUU0h |
| 540 | 806242860592926720 | 0 | 13616 | Original tweet | https://t.co/nfprKAXqwu |
| 541 | 806219024703037440 | 7145 | 1388 | Original tweet | https://t.co/IZidSrBvhi |
| 542 | 805958939288408065 | 0 | 6238 | Original tweet | https://t.co/zrMVdfFej6 |
| 543 | 805932879469572096 | 9178 | 2209 | Original tweet | https://t.co/Zcwr8LgoO8 |
| 544 | 805826884734976000 | 7335 | 2132 | Original tweet | https://t.co/SgpBVYIL18 |
| 545 | 805823200554876929 | 0 | 9374 | Original tweet | https://t.co/t0cEeRbcXJ |
| 546 | 805520635690676224 | 6368 | 1905 | Original tweet | https://t.co/zacX7S6GyJ |
| 547 | 805487436403003392 | 9773 | 2929 | Original tweet | https://t.co/1JUduNuaWl |
| 548 | 805207613751304193 | 8680 | 1972 | Original tweet | https://t.co/lHy4Xbyhd9 |
| 549 | 804738756058218496 | 15326 | 4480 | Original tweet | https://t.co/kQVQoOW9NZ |
| 550 | 804475857670639616 | 6886 | 2355 | Original tweet | https://t.co/LEZ8jR5txd |
| 551 | 804413760345620481 | 0 | 3712 | Original tweet | https://t.co/AsykOwMrXQ |
| 552 | 804026241225523202 | 49774 | 18876 | Original tweet | https://t.co/U7FvBZo6Bq |
| 553 | 803773340896923648 | 11203 | 3220 | Original tweet | https://t.co/ZxeRjMKaWt |
| 554 | 803692223237865472 | 0 | 8689 | Original tweet | https://t.co/fR1P3g5I6k |
| 555 | 803638050916102144 | 12270 | 4828 | Original tweet | https://t.co/ns9qoElfsX |
| 556 | 803380650405482500 | 8601 | 2169 | Original tweet | https://t.co/yPbCALoy2n |
| 557 | 803321560782307329 | 0 | 6221 | Original tweet | https://t.co/Nb… |
| 558 | 803276597545603072 | 11207 | 2887 | Original tweet | https://t.co/jxQhxoPsgL |
| 559 | 802952499103731712 | 10085 | 2336 | Original tweet | https://t.co/yLm7hQ6UXh |
| 560 | 802624713319034886 | 0 | 3403 | Original tweet | https://t.co/SuXcI9B7pQ |
| 561 | 802600418706604034 | 7938 | 1714 | Original tweet | https://t.co/urhl90ZE1O |
| 562 | 802572683846291456 | 9959 | 2926 | Original tweet | https://t.co/EFfLCP7oQv |
| 563 | 802323869084381190 | 18124 | 6808 | Original tweet | https://t.co/aX4brLLpWZ |
| 564 | 802265048156610565 | 7039 | 1573 | Original tweet | https://t.co/9IxWAXFqze |
| 565 | 802247111496568832 | 0 | 5247 | Original tweet | https://t.co/I1bJUzUEW5 |
| 566 | 802239329049477120 | 10132 | 3040 | Original tweet | https://t.co/5oWrHCWg87 |
| 567 | 802185808107208704 | 0 | 314 | Original tweet | https:/… |
| 568 | 801958328846974976 | 8608 | 1992 | Original tweet | https://t.co/4fY2bsAm65 |
| 569 | 801854953262350336 | 1958 | 275 | Original tweet | C |
| 570 | 801538201127157760 | 9141 | 2391 | Original tweet | https://t.co/p1RD39XjUe |
| 571 | 801285448605831168 | 6802 | 960 | Original tweet | https://t.co/bC69RrW559 |
| 572 | 801167903437357056 | 27386 | 6961 | Original tweet | https://t.co/R6wJyC2Tey |
| 573 | 801127390143516673 | 0 | 4627 | Original tweet | https://… |
| 574 | 801115127852503040 | 8992 | 2429 | Original tweet | https://t.co/55Dqe0SJNj |
| 575 | 800859414831898624 | 778 | 113 | Original tweet | s |
| 576 | 800855607700029440 | 0 | 1889 | Original tweet | https://t.co/pnUF69K4xk |
| 577 | 800751577355128832 | 11701 | 3214 | Original tweet | https://t.co/4UwCTW3lXG |
| 578 | 800513324630806528 | 14685 | 3495 | Original tweet | https://t.co/ILHGs0e6Dm |
| 579 | 800459316964663297 | 10538 | 2489 | Original tweet | https://t.co/61sX7pW5Ca |
| 580 | 800443802682937345 | 0 | 5068 | Original tweet | https://t.co/FYT9QBEnKG |
| 581 | 800388270626521089 | 12456 | 3265 | Original tweet | https://t.co/azMneS6Ly5 |
| 582 | 800188575492947969 | 0 | 4581 | Original tweet | https://… |
| 583 | 800141422401830912 | 17092 | 2980 | Original tweet | https://t.co/pbKOesr8Tg |
| 584 | 800018252395122689 | 31768 | 15351 | Original tweet | https://t.co/gQqRBfkX4I |
| 585 | 799774291445383169 | 0 | 5488 | Original tweet | https://t.co/wdgY9oHPrT |
| 586 | 799757965289017345 | 9390 | 2506 | Original tweet | https://t.co/OiH8PaOxB1 |
| 587 | 799422933579902976 | 8965 | 2213 | Original tweet | https://t.co/bpLuQuxzHZ |
| 588 | 799308762079035393 | 0 | 6478 | Original tweet | https://t.co/7oQ1wpf… |
| 589 | 799297110730567681 | 11065 | 3227 | Original tweet | https://t.co/YDtZcAiMAf |
| 590 | 799063482566066176 | 9058 | 2863 | Original tweet | https://t.co/BXJFKOVnJm |
| 591 | 798933969379225600 | 14712 | 5203 | Original tweet | https://t.co/KJAKO2kXsL |
| 592 | 798925684722855936 | 8246 | 1663 | Original tweet | https://t.co/8yvpacwBcu |
| 593 | 798705661114773508 | 0 | 7724 | Original tweet | https://… |
| 594 | 798701998996647937 | 0 | 9126 | Original tweet | https://t… |
| 595 | 798697898615730177 | 0 | 7602 | Original tweet | https://t.co/HVGs5aAKAn |
| 596 | 798694562394996736 | 0 | 5812 | Original tweet | https://t.co/JKXh0NbBNL |
| 597 | 798686750113755136 | 0 | 2702 | Original tweet | https://t.co/Y… |
| 598 | 798682547630837760 | 0 | 5515 | Original tweet | https://t.… |
| 599 | 798673117451325440 | 0 | 6485 | Original tweet | https://t.co/WId5lxNdPH |
| 600 | 798665375516884993 | 0 | 4519 | Original tweet | https://t.co/eqmkr2gmPH |
| 601 | 798644042770751489 | 0 | 2153 | Original tweet | https://t.co/J5Mqn8VeYq |
| 602 | 798628517273620480 | 0 | 2272 | Original tweet | https://t.co/0aDF62KVP7 |
| 603 | 798585098161549313 | 0 | 6618 | Original tweet | https://t.… |
| 604 | 798576900688019456 | 0 | 6871 | Original tweet | https://t.co/… |
| 605 | 798340744599797760 | 0 | 3924 | Original tweet | https://t.co/E6bGWf9EOm |
| 606 | 798209839306514432 | 11548 | 2954 | Original tweet | https://t.co/jG1PAFkB81 |
| 607 | 797971864723324932 | 13018 | 3652 | Original tweet | https://t.co/GRWPgNKt2z |
| 608 | 797545162159308800 | 16198 | 5656 | Original tweet | https://t.co/Ia19irLwyB |
| 609 | 797236660651966464 | 22328 | 7726 | Original tweet | https://t.co/6kqsAjJNhi |
| 610 | 797165961484890113 | 256 | 32 | Original tweet | 😉 |
| 611 | 796904159865868288 | 0 | 10411 | Original tweet | https:/… |
| 612 | 796865951799083009 | 8564 | 2198 | Original tweet | https://t.co/Jgnuiyvq06 |
| 613 | 796759840936919040 | 13256 | 3562 | Original tweet | https://t.co/6hx7ur6sNI |
| 614 | 796563435802726400 | 0 | 8536 | Original tweet | https://t.co/5d… |
| 615 | 796484825502875648 | 8472 | 2042 | Original tweet | https://t.co/bvkkqOjNDV |
| 616 | 796387464403357696 | 12334 | 4861 | Original tweet | https://t.co/cVLUasbKA5 |
| 617 | 796177847564038144 | 0 | 16628 | Original tweet | https://t.co/y5KarNXWXt |
| 618 | 796149749086875649 | 36177 | 16628 | Original tweet | https://t.co/y5KarNXWXt |
| 619 | 796125600683540480 | 5511 | 2079 | Original tweet | https://t.co/a18mzkhTf6 |
| 620 | 796116448414461957 | 10139 | 2813 | Original tweet | https://t.co/7i0bDMbrVN |
| 621 | 796080075804475393 | 9469 | 2703 | Original tweet | https://t.co/opoXKxmfFm |
| 622 | 796031486298386433 | 12071 | 4284 | Original tweet | https://t.co/PbgvuD0qIL |
| 623 | 795464331001561088 | 55683 | 27728 | Original tweet | https://t.co/gBUDjdEcqz |
| 624 | 795400264262053889 | 11270 | 3323 | Original tweet | https://t.co/2H4MfOGlpQ |
| 625 | 795076730285391872 | 18139 | 6288 | Original tweet | https://t.co/ivPWhspN3E |
| 626 | 794983741416415232 | 0 | 3942 | Original tweet | https://t.co/TU4sZogVIq |
| 627 | 794926597468000259 | 11492 | 2697 | Original tweet | https://t.co/XRPvTPF0VH |
| 628 | 794355576146903043 | 0 | 12014 | Original tweet | https://t.co/x5gXRS1abq |
| 629 | 794332329137291264 | 10686 | 3088 | Original tweet | https://t.co/SIQbb8c3AU |
| 630 | 794205286408003585 | 10314 | 3895 | Original tweet | https://t.co/trSjgY3h4g |
| 631 | 793962221541933056 | 18910 | 5711 | Original tweet | https://t.co/xIfrsMNLBR |
| 632 | 793845145112371200 | 10295 | 2187 | Original tweet | https://t.co/2Xo19aPrG5 |
| 633 | 793614319594401792 | 0 | 3661 | Original tweet | https://t.co/O5IUmRHRIh |
| 634 | 793601777308463104 | 8926 | 1908 | Original tweet | https://t.co/LhzPWv6rTv |
| 635 | 793500921481273345 | 11953 | 2786 | Original tweet | https://t.co/aF5MmpvPqN |
| 636 | 793286476301799424 | 27597 | 10723 | Original tweet | https://t.co/rLHGx3VAF3 |
| 637 | 793271401113350145 | 9677 | 2763 | Original tweet | https://t.co/MgQSdfZGPN |
| 638 | 793256262322548741 | 22350 | 9714 | Original tweet | https://t.co/BNy9IIJMb0 |
| 639 | 793241302385262592 | 11780 | 3812 | Original tweet | https://t.co/Ap477GhwXt |
| 640 | 793226087023144960 | 11001 | 3338 | Original tweet | https://t.co/hFxxBCWlwj |
| 641 | 793210959003287553 | 9997 | 3301 | Original tweet | https://t.co/etL8FHBrh8 |
| 642 | 793195938047070209 | 17063 | 6547 | Original tweet | https://t.co/YSi6K1firY |
| 643 | 793180763617361921 | 7740 | 2310 | Original tweet | https://t.co/2VhmlwxA1Q |
| 644 | 793165685325201412 | 10478 | 3238 | Original tweet | https://t.co/IbzT7DJvBo |
| 645 | 793150605191548928 | 6909 | 1984 | Original tweet | https://t.co/3lE8Izgmkf |
| 646 | 793135492858580992 | 7214 | 2893 | Original tweet | https://t.co/PrgvOyPtDT |
| 647 | 793120401413079041 | 14202 | 4551 | Original tweet | https://t.co/sxMrsOZ8zb |
| 648 | 792913359805018113 | 16063 | 4715 | Original tweet | https://t.co/LRyMrU7Wfq |
| 649 | 792883833364439040 | 12666 | 4964 | Original tweet | https://t.co/v17mFm0Ftz |
| 650 | 792773781206999040 | 8209 | 1963 | Original tweet | https://t.co/RhaPExuxJL |
| 651 | 792394556390137856 | 15128 | 4998 | Original tweet | https://t.co/of0pFNBIl8 |
| 652 | 792050063153438720 | 8029 | 2088 | Original tweet | https://t.co/S3f1SYylzu |
| 653 | 791821351946420224 | 0 | 24514 | Original tweet | https://t.co/e3LPMAHj7p |
| 654 | 791784077045166082 | 0 | 11271 | Original tweet | https://t.co/4Kn9GEHXiE |
| 655 | 791780927877898241 | 0 | 4432 | Original tweet | https://t.co/bROYbceZ1u |
| 656 | 791774931465953280 | 37818 | 21156 | Original tweet | https://t.co/roqIxCvEB3 |
| 657 | 791672322847637504 | 13129 | 3661 | Original tweet | https://t.co/O5IUmRHRIh |
| 658 | 791406955684368384 | 14670 | 4797 | Original tweet | https://t.co/Zcw9Sccctc |
| 659 | 791312159183634433 | 9841 | 2963 | Original tweet | https://t.co/GGJvxYt3xK |
| 660 | 791026214425268224 | 0 | 4858 | Original tweet | https://t.co/gx3xF5mZbo |
| 661 | 790987426131050500 | 11089 | 2483 | Original tweet | https://t.co/Eno0mypHIr |
| 662 | 790946055508652032 | 18601 | 5496 | Original tweet | https://t.co/dgvTPZ9tgI |
| 663 | 790723298204217344 | 0 | 2704 | Original tweet | https://t.co/Ln89R4FP7v |
| 664 | 790698755171364864 | 9158 | 2203 | Original tweet | https://t.co/IiiBq460I7 |
| 665 | 790581949425475584 | 22473 | 8183 | Original tweet | https://t.co/Fd5WFDTMH4 |
| 666 | 790337589677002753 | 8740 | 2167 | Original tweet | https://t.co/ovE2hqXryV |
| 667 | 790277117346975746 | 14081 | 3732 | Original tweet | https://t.co/aI7umZHIq7 |
| 668 | 790227638568808452 | 0 | 4190 | Original tweet | https://t.co/2lBg3… |
| 669 | 789986466051088384 | 10369 | 2704 | Original tweet | https://t.co/Ln89R4FP7v |
| 670 | 789960241177853952 | 0 | 4839 | Original tweet | https://t.… |
| 671 | 789903600034189313 | 11673 | 4858 | Original tweet | https://t.co/P0kSN6rT6H |
| 672 | 789628658055020548 | 8448 | 2080 | Original tweet | https://t.co/huPSJJ7FDI |
| 673 | 789599242079838210 | 7620 | 2279 | Original tweet | https://t.co/0R4meWXFOx |
| 674 | 789530877013393408 | 13188 | 3942 | Original tweet | https://t.co/TU4sZogVIq |
| 675 | 789314372632018944 | 9615 | 2666 | Original tweet | https://t.co/G2ms0A5jWM |
| 676 | 789280767834746880 | 0 | 5747 | Original tweet | https://t… |
| 677 | 789268448748703744 | 10196 | 3014 | Original tweet | https://t.co/JSs2bfDtTS |
| 678 | 789137962068021249 | 10875 | 3244 | Original tweet | https://t.co/2jwxxtNzoN |
| 679 | 788908386943430656 | 30653 | 14409 | Original tweet | https://t.co/3BXh073tDm |
| 680 | 788765914992902144 | 30658 | 12014 | Original tweet | https://t.co/x5gXRS1abq |
| 681 | 788552643979468800 | 0 | 8407 | Original tweet | https://t.co/u1ulQ5heLX |
| 682 | 788412144018661376 | 16060 | 5990 | Original tweet | https://t.co/4DhSsC1W7S |
| 683 | 788178268662984705 | 8100 | 2488 | Original tweet | https://t.co/s7MgFWDySc |
| 684 | 788150585577050112 | 6865 | 1510 | Original tweet | https://t.co/xosHjFzVXc |
| 685 | 788070120937619456 | 0 | 3952 | Original tweet | https://t.co/1acHQS8rvK |
| 686 | 788039637453406209 | 6867 | 1535 | Original tweet | https://t.co/lRmUUOxgbQ |
| 687 | 787810552592695296 | 9717 | 3540 | Original tweet | https://t.co/pNNjBtHWPc |
| 688 | 787717603741622272 | 11416 | 3240 | Original tweet | https://t.co/i622ZbWkUp |
| 689 | 787397959788929025 | 12120 | 3300 | Original tweet | https://t.co/lHVHGdDzb3 |
| 690 | 787322443945877504 | 8726 | 2032 | Original tweet | https://t.co/lsrR83SiVp |
| 691 | 787111942498508800 | 0 | 7798 | Original tweet | https://t.co/v5m2bIukXc |
| 692 | 786963064373534720 | 29725 | 9327 | Original tweet | https://t.co/ibj5g6xaAj |
| 693 | 786729988674449408 | 0 | 2827 | Original tweet | https://t.… |
| 694 | 786709082849828864 | 20296 | 7069 | Original tweet | https://t.co/yBO5wuqaPS |
| 695 | 786664955043049472 | 11957 | 2996 | Original tweet | https://t.co/HmlEvAMP4r |
| 696 | 786595970293370880 | 10497 | 3601 | Original tweet | https://t.co/L8BWDD4oBX |
| 697 | 786363235746385920 | 12189 | 4072 | Original tweet | https://t.co/TVXpEJB7Wn |
| 698 | 786286427768250368 | 8930 | 3352 | Original tweet | https://t.co/ObT2tSxXit |
| 699 | 786233965241827333 | 17178 | 5571 | Original tweet | https://t.co/78c9W8kLFh |
| 700 | 786051337297522688 | 1614 | 179 | Original tweet | t |
| 701 | 786036967502913536 | 0 | 8237 | Original tweet | https://t.co/x0gV2Ck3AD |
| 702 | 785927819176054784 | 12696 | 3652 | Original tweet | https://t.co/lntsj7Fc4Y |
| 703 | 785872687017132033 | 7489 | 2130 | Original tweet | https://t.co/1j9kLGb4wV |
| 704 | 785639753186217984 | 8735 | 2561 | Original tweet | https://t.co/f2wmLZTPHd |
| 705 | 785533386513321988 | 10183 | 2334 | Original tweet | https://t.co/h4jhlH4EyG |
| 706 | 785515384317313025 | 6800 | 1477 | Original tweet | y |
| 707 | 785264754247995392 | 8128 | 1911 | Original tweet | https://t.co/mWYACm4qnx |
| 708 | 785170936622350336 | 13491 | 5639 | Original tweet | https://t.co/cubFg7F4qQ |
| 709 | 784826020293709826 | 11310 | 3712 | Original tweet | https://t.co/AsykOwMrXQ |
| 710 | 784517518371221505 | 10039 | 2970 | Original tweet | https://t.co/p6fgYe2dB6 |
| 711 | 784431430411685888 | 6329 | 1491 | Original tweet | https://t.co/PHA1vtqqpt |
| 712 | 784183165795655680 | 22513 | 9374 | Original tweet | https://t.co/t0cEeRbcXJ |
| 713 | 784057939640352768 | 33505 | 12953 | Original tweet | https://t.co/T7Jr4Gw4sC |
| 714 | 783839966405230592 | 33689 | 12643 | Original tweet | https://t.co/8TCQcsZCZ8 |
| 715 | 783821107061198850 | 8209 | 2269 | Original tweet | https://t.co/STcPjiNAHp |
| 716 | 783695101801398276 | 11650 | 3737 | Original tweet | https://t.co/kCRKlFg4AY |
| 717 | 783466772167098368 | 9468 | 2608 | Original tweet | https://t.co/s8W8Del9HQ |
| 718 | 783391753726550016 | 18908 | 6441 | Original tweet | https://t.co/BO936YdJdi |
| 719 | 783347506784731136 | 0 | 6533 | Original tweet | https://t.co/2S6oye3XqK |
| 720 | 783334639985389568 | 32651 | 13616 | Original tweet | https://t.co/nfprKAXqwu |
| 721 | 783085703974514689 | 9112 | 2565 | Original tweet | https://t.co/IsqyvbjFgM |
| 722 | 782969140009107456 | 26949 | 8521 | Original tweet | https://t.co/vOBV1ZqVcX |
| 723 | 782747134529531904 | 8310 | 1604 | Original tweet | https://t.co/C6fUMnHt1H |
| 724 | 782722598790725632 | 19250 | 6238 | Original tweet | https://t.co/zrMVdfFej6 |
| 725 | 782598640137187329 | 8694 | 2184 | Original tweet | https://t.co/BIUchFwHqn |
| 726 | 782305867769217024 | 18630 | 6470 | Original tweet | https://t.co/pgVKxRw0s1 |
| 727 | 782021823840026624 | 0 | 7236 | Original tweet | https://t.co/oHKJHghrp5 |
| 728 | 781955203444699136 | 12357 | 3920 | Original tweet | https://t.co/FjEsk7A1JV |
| 729 | 781661882474196992 | 11634 | 3129 | Original tweet | https://t.co/ELqelxWMrC |
| 730 | 781655249211752448 | 4466 | 1314 | Original tweet | https://t.co/LOKrNo0OM7 |
| 731 | 781524693396357120 | 23163 | 6426 | Original tweet | https://t.co/ya7bviQUUf |
| 732 | 781308096455073793 | 7973 | 2961 | Original tweet | https://t.co/WQvcPEpH2u |
| 733 | 781251288990355457 | 9428 | 2458 | Original tweet | https://t.co/xIYsa6LPA4 |
| 734 | 781163403222056960 | 10895 | 3168 | Original tweet | https://t.co/YkHc7U7uUy |
| 735 | 780931614150983680 | 24192 | 8536 | Original tweet | https://t.co/5dUYOu4b8d |
| 736 | 780858289093574656 | 8033 | 2328 | Original tweet | https://t.co/YElO4hvXI6 |
| 737 | 780800785462489090 | 6141 | 1505 | Original tweet | https://t.co/KQzSR8eCsw |
| 738 | 780601303617732608 | 13525 | 3839 | Original tweet | https://t.co/mH0IOyFdIG |
| 739 | 780543529827336192 | 7040 | 2032 | Original tweet | https://t.co/VG095mi09Q |
| 740 | 780496263422808064 | 0 | 4319 | Original tweet | https://t.co/BXIuvkQO9b |
| 741 | 780476555013349377 | 0 | 136 | Original tweet | https://t.co/rnKvzt6RJs https://t.co/v4e2ywe8iO |
| 742 | 780459368902959104 | 5892 | 1224 | Original tweet | https://t.co/coi4l1T2Sm |
| 743 | 780192070812196864 | 9712 | 2589 | Original tweet | https://t.co/zHIqpM5Gni |
| 744 | 780092040432480260 | 0 | 2655 | Original tweet | https://t.c… |
| 745 | 780074436359819264 | 13723 | 5815 | Original tweet | https://t.co/dVm5Hgdpeb |
| 746 | 779834332596887552 | 21252 | 8237 | Original tweet | https://t.co/x0gV2Ck3AD |
| 747 | 779377524342161408 | 9831 | 3613 | Original tweet | https://t.co/KsqaIzlQ12 |
| 748 | 779124354206535695 | 0 | 21324 | Original tweet | https://t.co/… |
| 749 | 779123168116150273 | 13206 | 4207 | Original tweet | https://t.co/uMfhduaate |
| 750 | 779056095788752897 | 16500 | 5247 | Original tweet | https://t.co/I1bJUzUEW5 |
| 751 | 778990705243029504 | 22342 | 8437 | Original tweet | https://t.co/vyx1X5eyWI |
| 752 | 778774459159379968 | 0 | 11550 | Original tweet | https://t.co/iy7ylyZcsE |
| 753 | 778764940568104960 | 955 | 426 | Original tweet | https://t.co/tird9cIlzB |
| 754 | 778748913645780993 | 7717 | 1562 | Original tweet | https://t.co/1dpEuALnY0 |
| 755 | 778650543019483137 | 6430 | 1729 | Original tweet | https://t.co/KYZkPuiC1l |
| 756 | 778624900596654080 | 5177 | 1176 | Original tweet | https://t.co/0rRxyBQt32 |
| 757 | 778408200802557953 | 15135 | 5023 | Original tweet | https://t.co/gJKD9pst5A |
| 758 | 778396591732486144 | 0 | 14198 | Original tweet | https://t.co/iHe6liLwWR |
| 759 | 778383385161035776 | 6515 | 1271 | Original tweet | https://t.co/zP1IvAATWv |
| 760 | 778286810187399168 | 11576 | 3836 | Original tweet | https://t.co/hhTfnPrWfb |
| 761 | 778039087836069888 | 9417 | 3065 | Original tweet | https://t.co/t8Y4x9DmVD |
| 762 | 778027034220126208 | 7320 | 1885 | Original tweet | https://t.co/QFaUiIHxHq |
| 763 | 777953400541634568 | 0 | 4080 | Original tweet | https://… |
| 764 | 777885040357281792 | 7078 | 1893 | Original tweet | https://t.co/pL7wbMRW7M |
| 765 | 777684233540206592 | 12518 | 3403 | Original tweet | https://t.co/SuXcI9B7pQ |
| 766 | 777641927919427584 | 0 | 4947 | Original tweet | https://t.co/lprdOylVpS |
| 767 | 777621514455814149 | 9742 | 2910 | Original tweet | https://t.co/BnVTMtUeI3 |
| 768 | 777189768882946048 | 15921 | 4999 | Original tweet | https://t.co/d3aLyCykn7 |
| 769 | 776819012571455488 | 0 | 15839 | Original tweet | https://t.co/hyAC5Hq9GC |
| 770 | 776813020089548800 | 5444 | 1405 | Original tweet | https://t.co/nFqLaOLUQA |
| 771 | 776477788987613185 | 9858 | 3249 | Original tweet | https://t.co/iJE3F0VozW |
| 772 | 776249906839351296 | 0 | 10673 | Original tweet | https://… |
| 773 | 776218204058357768 | 33345 | 18497 | Original tweet | https://t.co/nzqTNw0744 |
| 774 | 776201521193218049 | 10681 | 2919 | Original tweet | https://t.co/Pq150LeRaC |
| 775 | 776113305656188928 | 13102 | 5068 | Original tweet | https://t.co/FYT9QBEnKG |
| 776 | 776088319444877312 | 2045 | 179 | Original tweet | https://t.co/wOhuABgj6I |
| 777 | 775898661951791106 | 0 | 17621 | Original tweet | https://t.co/pG2inLaOda |
| 778 | 775842724423557120 | 13022 | 3116 | Original tweet | https://t.co/saRYTcxQeH |
| 779 | 775733305207554048 | 15413 | 4627 | Original tweet | https://t.co/9CcBSxCXXG |
| 780 | 775729183532220416 | 14361 | 5302 | Original tweet | https://t.co/J39lT3b0rH |
| 781 | 775364825476165632 | 8295 | 3472 | Original tweet | https://t.co/7FNcBaKbci |
| 782 | 775350846108426240 | 11309 | 4532 | Original tweet | https://t.co/2OmDMAkkou |
| 783 | 775096608509886464 | 0 | 9220 | Original tweet | https:/… |
| 784 | 775085132600442880 | 17281 | 5488 | Original tweet | https://t.co/wdgY9oHPrT |
| 785 | 774757898236878852 | 9462 | 2035 | Original tweet | https://t.co/dS8SCbNF9P |
| 786 | 774639387460112384 | 7508 | 2013 | Original tweet | https://t.co/4s5Xlijogu |
| 787 | 774314403806253056 | 24167 | 6478 | Original tweet | https://t.co/7oQ1wpfxIH |
| 788 | 773985732834758656 | 11925 | 4492 | Original tweet | https://t.co/RFWtDqTnAz |
| 789 | 773922284943896577 | 7110 | 1999 | Original tweet | https://t.co/G56ikYAqFg |
| 790 | 773704687002451968 | 7317 | 1891 | Original tweet | https://t.co/OqNggd4Oio |
| 791 | 773670353721753600 | 5935 | 1501 | Original tweet | https://t.co/rA8WUVOLBr |
| 792 | 773547596996571136 | 24553 | 7126 | Original tweet | https://t.co/nBJ5RE4yHb |
| 793 | 773336787167145985 | 0 | 5912 | Original tweet | https:/… |
| 794 | 773308824254029826 | 25846 | 8640 | Original tweet | https://t.co/0Fcft7jl4N |
| 795 | 773247561583001600 | 10414 | 3699 | Original tweet | https://t.co/hG5WYT9ECn |
| 796 | 773191612633579521 | 11117 | 4736 | Original tweet | https://t.co/9HEVPJEioD |
| 797 | 772877495989305348 | 9555 | 4501 | Original tweet | https://t.co/qEP31epKEV |
| 798 | 772826264096874500 | 8842 | 2669 | Original tweet | https://t.co/7CQkn3gHOQ |
| 799 | 772615324260794368 | 0 | 3914 | Original tweet | https://t.co/eSvz4EapHH |
| 800 | 772581559778025472 | 7192 | 1968 | Original tweet | https://t.co/8lpAGaZRFn |
| 801 | 772193107915964416 | 6665 | 1612 | Original tweet | https://t.co/Dp0s7MRIHK |
| 802 | 772152991789019136 | 4181 | 1300 | Original tweet | https://t.co/H9yjI9eo3A |
| 803 | 772117678702071809 | 4165 | 848 | Original tweet | https://t.co/GHOfbTVQti |
| 804 | 772114945936949249 | 3005 | 546 | Original tweet | https://t.co/CbtNfecWiT |
| 805 | 772102971039580160 | 4448 | 1065 | Original tweet | https://t.co/B2f3XkGU5c |
| 806 | 771908950375665664 | 7298 | 2181 | Original tweet | https://t.co/yOVzAomJ6k |
| 807 | 771770456517009408 | 13356 | 3924 | Original tweet | https://t.co/E6bGWf9EOm |
| 808 | 771500966810099713 | 9167 | 3018 | Original tweet | https://t.co/1tWe5zZoHv |
| 809 | 771380798096281600 | 11746 | 5912 | Original tweet | https://t.co/sPB5JMnWBn |
| 810 | 771171053431250945 | 0 | 8705 | Original tweet | https://t.co/iJABMhVidf |
| 811 | 771136648247640064 | 10223 | 3357 | Original tweet | https://t.co/8VEDZKHddR |
| 812 | 771102124360998913 | 6898 | 1663 | Original tweet | https://t.co/K5Jo7QRCvA |
| 813 | 771014301343748096 | 7032 | 1782 | Original tweet | https://t.co/OJZQ6I4gGd |
| 814 | 770787852854652928 | 5498 | 1415 | Original tweet | https://t.co/d0QEbp78Yi |
| 815 | 770772759874076672 | 5749 | 1626 | Original tweet | https://t.co/lqr0NdtwQo |
| 816 | 770743923962707968 | 0 | 52360 | Original tweet | https://t… |
| 817 | 770655142660169732 | 8130 | 2013 | Original tweet | https://t.co/qlUDuPoE3d |
| 818 | 770414278348247044 | 6987 | 2390 | Original tweet | https://t.co/OUwWbEKOUV |
| 819 | 770293558247038976 | 6923 | 1718 | Original tweet | https://t.co/3fEPpj0KYw |
| 820 | 770093767776997377 | 0 | 3520 | Original tweet | https://t.co/o5J479bZUC |
| 821 | 770069151037685760 | 8385 | 2651 | Original tweet | https://t.co/mADHGenzFS |
| 822 | 769940425801170949 | 34948 | 11131 | Original tweet | https://t.co/guDkLrX8zV |
| 823 | 769695466921623552 | 7101 | 1926 | Original tweet | https://t.co/vhrkz0dK4v |
| 824 | 769335591808995329 | 0 | 8830 | Original tweet | https://t.co/3PoKf6cw7f |
| 825 | 769212283578875904 | 5980 | 1969 | Original tweet | https://t.co/OCYLz3fjVE |
| 826 | 768970937022709760 | 16017 | 7574 | Original tweet | https://t.co/UlB2mzw3Xs |
| 827 | 768909767477751808 | 0 | 3129 | Original tweet | https:/… |
| 828 | 768855141948723200 | 4660 | 1034 | Original tweet | https://t.co/1BxxcdVNJ8 |
| 829 | 768609597686943744 | 4580 | 1382 | Original tweet | https://t.co/dZPMLresEr |
| 830 | 768596291618299904 | 5592 | 1473 | Original tweet | https://t.co/J2AJdyxglH |
| 831 | 768554158521745409 | 0 | 6719 | Original tweet | https://t.c… |
| 832 | 768473857036525572 | 15110 | 3958 | Original tweet | https://t.co/goy9053wC7 |
| 833 | 768193404517830656 | 12157 | 4080 | Original tweet | https://t.co/WmczvjCWJq |
| 834 | 767884188863397888 | 5309 | 1634 | Original tweet | https://t.co/Qai481H6RA |
| 835 | 767754930266464257 | 17814 | 6221 | Original tweet | https://t.co/Nb68IsVb9O |
| 836 | 767500508068192258 | 8295 | 2688 | Original tweet | https://t.co/Z2g2YWPzX2 |
| 837 | 767191397493538821 | 13643 | 4406 | Original tweet | https://t.co/QOKZdus9TT |
| 838 | 767122157629476866 | 11227 | 3261 | Original tweet | https://t.co/IEARC2sRzC |
| 839 | 766864461642756096 | 0 | 6521 | Original tweet | https:/… |
| 840 | 766793450729734144 | 5650 | 1565 | Original tweet | https://t.co/exrRjjJqeO |
| 841 | 766714921925144576 | 2872 | 438 | Original tweet | y |
| 842 | 766693177336135680 | 4484 | 918 | Original tweet | https://t.co/cTlHjEUNK8 |
| 843 | 766423258543644672 | 6671 | 1825 | Original tweet | https://t.co/Tytt15VquG |
| 844 | 766313316352462849 | 7493 | 2166 | Original tweet | https://t.co/xuxZoObmF0 |
| 845 | 766078092750233600 | 0 | 2970 | Original tweet | https://t.co/vtVHtKFtBH |
| 846 | 766069199026450432 | 4765 | 1003 | Original tweet | https://t.co/Z69mShifuk |
| 847 | 766008592277377025 | 4149 | 571 | Original tweet | https://t.co/jaivZ1dcUL |
| 848 | 765719909049503744 | 8021 | 2475 | Original tweet | https://t.co/soxdNqZDZ2 |
| 849 | 765669560888528897 | 5760 | 1407 | Original tweet | https://t.co/t6RvnVEdRR |
| 850 | 765395769549590528 | 20539 | 3127 | Original tweet | https://t.co/ep1NkYoiwB |
| 851 | 765371061932261376 | 7842 | 2475 | Original tweet | https://t.co/w2qDmoTIZ5 |
| 852 | 765222098633691136 | 12902 | 3914 | Original tweet | https://t.co/eSvz4EapHH |
| 853 | 764857477905154048 | 7099 | 2029 | Original tweet | https://t.co/cBIFBsCRz6 |
| 854 | 764259802650378240 | 6718 | 1745 | Original tweet | https://t.co/Q1v9BZylvZ |
| 855 | 763956972077010945 | 812 | 61 | Original tweet | 0 |
| 856 | 763837565564780549 | 14041 | 4858 | Original tweet | https://t.co/gx3xF5mZbo |
| 857 | 763183847194451968 | 6004 | 1702 | Original tweet | https://t.co/EDMcwt86fU |
| 858 | 763167063695355904 | 0 | 3484 | Original tweet | https:/… |
| 859 | 763103485927849985 | 8163 | 2602 | Original tweet | https://t.co/VIXT3D26VM |
| 860 | 762699858130116608 | 13518 | 4190 | Original tweet | https://t.co/2lBg3ZgivD |
| 861 | 762471784394268675 | 12571 | 7612 | Original tweet | https://t.co/pA4MDKwRci |
| 862 | 762464539388485633 | 11503 | 4839 | Original tweet | https://t.co/zGSj1oUgxx |
| 863 | 762316489655476224 | 5350 | 1298 | Original tweet | https://t.co/sAHmwRtfSq |
| 864 | 762035686371364864 | 35400 | 17919 | Original tweet | https://t.co/3td8P3o0mB |
| 865 | 761976711479193600 | 5992 | 2310 | Original tweet | https://t.co/WTZ484EntP |
| 866 | 761750502866649088 | 0 | 4535 | Original tweet | https://t.co/VGPH0TfESw |
| 867 | 761745352076779520 | 4707 | 979 | Original tweet | https://t.co/obH5vMbm1j |
| 868 | 761672994376806400 | 55016 | 33421 | Original tweet | https://t.co/EY8kEFuzK7 |
| 869 | 761599872357261312 | 4578 | 1336 | Original tweet | https://t.co/7HY9RvCudo |
| 870 | 761371037149827077 | 0 | 20500 | Original tweet | https://t.co/Ezu6jQrKAZ |
| 871 | 761334018830917632 | 5792 | 1669 | Original tweet | https://t.co/ErPLjjJOKc |
| 872 | 761292947749015552 | 4957 | 1265 | Original tweet | https://t.co/0THNOfv2Jo |
| 873 | 761227390836215808 | 5908 | 1775 | Original tweet | https://t.co/nhLX27WsDY |
| 874 | 761004547850530816 | 12482 | 3952 | Original tweet | https://t.co/1acHQS8rvK |
| 875 | 760893934457552897 | 4228 | 1104 | Original tweet | https://t.co/H9YgrUkYwa |
| 876 | 760656994973933572 | 7343 | 2210 | Original tweet | https://t.co/tl3gNYdoq2 |
| 877 | 760641137271070720 | 5485 | 1481 | Original tweet | https://t.co/8Kmuj6SFbC |
| 878 | 760539183865880579 | 8399 | 4168 | Original tweet | https://t.co/9k8LLjJ0uJ |
| 879 | 760521673607086080 | 4681 | 1608 | Original tweet | https://t.co/IqyTF6qik6 |
| 880 | 760290219849637889 | 29618 | 13140 | Original tweet | https://t.co/qFsl1nnXMv |
| 881 | 760252756032651264 | 4338 | 995 | Original tweet | https://t.co/4gOv2Q3iKP |
| 882 | 760190180481531904 | 6334 | 2079 | Original tweet | https://t.co/h6s9Rch0gZ |
| 883 | 760153949710192640 | 0 | 38 | Original tweet | https://t.co/AG5UnRrmzJ |
| 884 | 759943073749200896 | 6581 | 2382 | Original tweet | https://t.co/HtAR6gpUAu |
| 885 | 759923798737051648 | 16284 | 6521 | Original tweet | https://t.co/49hkNAsubi |
| 886 | 759846353224826880 | 7433 | 2265 | Original tweet | https://t.co/fd6uucghY6 |
| 887 | 759793422261743616 | 6620 | 2173 | Original tweet | https://t.co/MYwR4DQKll |
| 888 | 759566828574212096 | 0 | 24319 | Original tweet | https://t.co/zxw8d5g94P |
| 889 | 759557299618865152 | 5202 | 1341 | Original tweet | https://t.co/JRV1dhBYwu |
| 890 | 759447681597108224 | 9418 | 2827 | Original tweet | https://t.co/vT3JM8b989 |
| 891 | 759446261539934208 | 1846 | 561 | Original tweet | https://t.co/fRaTGcj68A |
| 892 | 759197388317847553 | 6725 | 2221 | Original tweet | https://t.co/gQH2mmKIJW |
| 893 | 759159934323924993 | 0 | 1359 | Original tweet | https://t.co/QnfO7HEQGA |
| 894 | 759099523532779520 | 16101 | 4813 | Original tweet | https://t.co/Cim4DSj6Oi |
| 895 | 759047813560868866 | 7227 | 2302 | Original tweet | https://t.co/8W5iSOgXfx |
| 896 | 758854675097526272 | 3904 | 1027 | Original tweet | https://t.co/4UrfOZhztW |
| 897 | 758828659922702336 | 12376 | 4376 | Original tweet | https://t.co/9T2h14yn4Q |
| 898 | 758740312047005698 | 6339 | 1824 | Original tweet | https://t.co/rfWQ4T9iQj |
| 899 | 758474966123810816 | 4227 | 1132 | Original tweet | https://t.co/uPUAotqQtM |
| 900 | 758467244762497024 | 5316 | 2539 | Original tweet | https://t.co/HmwrdfEfUE |
| 901 | 758405701903519748 | 5756 | 2204 | Original tweet | https://t.co/M9BXCSDVjh |
| 902 | 758355060040593408 | 3797 | 1245 | Original tweet | https://t.co/NzWUrFZydr |
| 903 | 758099635764359168 | 21302 | 11550 | Original tweet | https://t.co/iy7ylyZcsE |
| 904 | 758041019896193024 | 3001 | 433 | Original tweet | https://t.co/l46jwv5WYv |
| 905 | 757741869644341248 | 7613 | 3710 | Original tweet | https://t.co/TdyGTcX0uo |
| 906 | 757729163776290825 | 0 | 9299 | Original tweet | https://t.co/Xl37lQEWd0 |
| 907 | 757725642876129280 | 5022 | 1391 | Original tweet | https://t.co/rptsOm73Wr |
| 908 | 757611664640446465 | 5026 | 1272 | Original tweet | https://t.co/AVks8DjHwB |
| 909 | 757597904299253760 | 0 | 336 | Original tweet | https://t.co/7boff8zojZ |
| 910 | 757596066325864448 | 4808 | 1219 | Original tweet | https://t.co/mOmnL19Wsl |
| 911 | 757400162377592832 | 16743 | 7759 | Original tweet | https://t.co/gwKCspY8N2 |
| 912 | 757393109802180609 | 6462 | 2009 | Original tweet | https://t.co/OfvRoD6ndV |
| 913 | 757354760399941633 | 4995 | 1637 | Original tweet | https://t.co/7waRPODGyO |
| 914 | 756998049151549440 | 6923 | 2271 | Original tweet | https://t.co/qbO5X6dYuj |
| 915 | 756939218950160384 | 7342 | 2295 | Original tweet | https://t.co/KGdeHuFJnH |
| 916 | 756651752796094464 | 5612 | 1511 | Original tweet | https://t.co/l0Iwj6rLFW |
| 917 | 756526248105566208 | 11506 | 4169 | Original tweet | https://t.co/CsLRpqdeTF |
| 918 | 756303284449767430 | 4359 | 1231 | Original tweet | https://t.co/az5BVcIV5I |
| 919 | 756288534030475264 | 28519 | 15071 | Original tweet | https://t.co/hfddJ0OiNR |
| 920 | 756275833623502848 | 7114 | 1738 | Original tweet | https://t.co/JrDAzMhwG9 |
| 921 | 755955933503782912 | 8092 | 3285 | Original tweet | https://t.co/GAYViEweWr |
| 922 | 755206590534418437 | 18212 | 6148 | Original tweet | https://t.co/I5ld3eKD5k |
| 923 | 755110668769038337 | 23446 | 12621 | Original tweet | https://t.co/goX3jewkYN |
| 924 | 754874841593970688 | 0 | 9193 | Original tweet | https://t.co/NLOHmlENag |
| 925 | 754856583969079297 | 7616 | 2870 | Original tweet | https://t.co/FyHrk20gUR |
| 926 | 754747087846248448 | 2854 | 591 | Original tweet | https://t.co/G9ufksBMlU |
| 927 | 754482103782404096 | 5852 | 2220 | Original tweet | https://t.co/ca0q9HM8II |
| 928 | 754449512966619136 | 4147 | 846 | Original tweet | https://t.co/0dYI0Cpdge |
| 929 | 754120377874386944 | 8655 | 2670 | Original tweet | https://t.co/lFEoGqZ4oA |
| 930 | 754011816964026368 | 9726 | 4079 | Original tweet | https://t.co/ilwQqWFKCh |
| 931 | 753655901052166144 | 6458 | 2492 | Original tweet | https://t.co/ULqThwWmLg |
| 932 | 753420520834629632 | 8731 | 4071 | Original tweet | https://t.co/CCdlwiTwQf |
| 933 | 753398408988139520 | 6384 | 2186 | Original tweet | https://t.co/ov05LIoQJX |
| 934 | 753375668877008896 | 8411 | 2655 | Original tweet | https://t.co/3r7wjfsXHc |
| 935 | 753298634498793472 | 0 | 6620 | Original tweet | https:/… |
| 936 | 753294487569522689 | 3758 | 1191 | Original tweet | https://t.co/sTuRoYfzPv |
| 937 | 753039830821511168 | 41080 | 24013 | Original tweet | https://t.co/dsv4xAtfv7 |
| 938 | 753026973505581056 | 4283 | 1109 | Original tweet | https://t.co/6qF5YZx6OV |
| 939 | 752932432744185856 | 13970 | 7798 | Original tweet | https://t.co/v5m2bIukXc |
| 940 | 752917284578922496 | 7592 | 1790 | Original tweet | https://t.co/WZ4zzkXXnW |
| 941 | 752701944171524096 | 0 | 3291 | Original tweet | https://t.co/XQ1tRUmO3z |
| 942 | 752682090207055872 | 6642 | 1846 | Original tweet | https://t.co/xVSodF19PS |
| 943 | 752660715232722944 | 4878 | 1794 | Original tweet | https://t.co/bWSgqnwSHr |
| 944 | 752568224206688256 | 6140 | 2605 | Original tweet | https://t.co/HCXQL4fGVZ |
| 945 | 752519690950500352 | 8157 | 3917 | Original tweet | https://t.co/G54yClasz2 |
| 946 | 752334515931054080 | 4238 | 1263 | Original tweet | https://t.co/jwd0j6oWLE |
| 947 | 752309394570878976 | 0 | 18963 | Original tweet | https://t.co/Bb3xnpsWBC |
| 948 | 752173152931807232 | 6569 | 2106 | Original tweet | https://t.co/olDmwNjOy1 |
| 949 | 751950017322246144 | 3415 | 1060 | Original tweet | https://t.co/BlGQkhM5EV |
| 950 | 751937170840121344 | 5770 | 1530 | Original tweet | https://t.co/Vfc3eAFl2q |
| 951 | 751830394383790080 | 6428 | 2227 | Original tweet | https://t.co/BJRsxuLF1w |
| 952 | 751793661361422336 | 6479 | 3320 | Original tweet | https://t.co/I7SFchkNk4 |
| 953 | 751598357617971201 | 8699 | 3440 | Original tweet | https://t.co/fHQrBKYSLC |
| 954 | 751583847268179968 | 4849 | 1265 | Original tweet | https://t.co/u2c9c7qSg8 |
| 955 | 751538714308972544 | 5547 | 1445 | Original tweet | https://t.co/5eJg69G8vY |
| 956 | 751456908746354688 | 3516 | 1127 | Original tweet | https://t.co/lsVAMBq6ex |
| 957 | 751251247299190784 | 13791 | 6695 | Original tweet | https://t.co/wayKZkDRTG |
| 958 | 751205363882532864 | 6948 | 2086 | Original tweet | https://t.co/510gJW9fsy |
| 959 | 751132876104687617 | 5610 | 1480 | Original tweet | https://t.co/yToDwVXEpA |
| 960 | 750868782890057730 | 5306 | 1595 | Original tweet | https://t.co/xe1aGZNkcC |
| 961 | 750719632563142656 | 14621 | 5747 | Original tweet | https://t.co/WS6BoApYyL |
| 962 | 750506206503038976 | 4934 | 1316 | Original tweet | https://t.co/SVU00Sc9U2 |
| 963 | 750429297815552001 | 14569 | 4947 | Original tweet | https://t.co/lprdOylVpS |
| 964 | 750383411068534784 | 5005 | 1309 | Original tweet | https://t.co/FfH3o88Vta |
| 965 | 750381685133418496 | 758 | 39 | Original tweet | y |
| 966 | 750147208377409536 | 3409 | 1095 | Original tweet | https://t.co/Mr8Lr3iOUe |
| 967 | 750132105863102464 | 3990 | 1440 | Original tweet | https://t.co/dDx2gKefYo |
| 968 | 750117059602808832 | 4740 | 1466 | Original tweet | https://t.co/RXdzWaCQHm |
| 969 | 750101899009982464 | 3344 | 959 | Original tweet | https://t.co/enCpXzZHkD |
| 970 | 750086836815486976 | 2383 | 613 | Original tweet | https://t.co/7tlZPrePXd |
| 971 | 750071704093859840 | 8653 | 3802 | Original tweet | https://t.co/RG4C9IdNJM |
| 972 | 750056684286914561 | 3444 | 1011 | Original tweet | https://t.co/8zQvXM6pG5 |
| 973 | 750041628174217216 | 3502 | 703 | Original tweet | https://t.co/7JeDfQvzzI |
| 974 | 750026558547456000 | 2986 | 888 | Original tweet | https://t.co/jrg29NDNhI |
| 975 | 750011400160841729 | 3568 | 1035 | Original tweet | https://t.co/D17IAcetmM |
| 976 | 749996283729883136 | 3331 | 919 | Original tweet | https://t.co/c7LNFt39eR |
| 977 | 749981277374128128 | 5569 | 2772 | Original tweet | https://t.co/GRXwMxLBkh |
| 978 | 749774190421639168 | 5114 | 1493 | Original tweet | https://t.co/4yXa801fgl |
| 979 | 749417653287129088 | 6721 | 1904 | Original tweet | https://t.co/qvA2rCUl6v |
| 980 | 749403093750648834 | 2892 | 622 | Original tweet | https://t.co/9qdJ2Q1Cwx |
| 981 | 749395845976588288 | 9488 | 3951 | Original tweet | https://t.co/lznl6QGkYc |
| 982 | 749317047558017024 | 6076 | 2509 | Original tweet | https://t.co/HHUAnBb6QB |
| 983 | 749075273010798592 | 6353 | 2360 | Original tweet | https://t.co/cRTJiQQk9o |
| 984 | 749064354620928000 | 5277 | 1714 | Original tweet | https://t.co/xEY8dbJxnF |
| 985 | 749036806121881602 | 3425 | 896 | Original tweet | https://t.co/U8cSRz8wzC |
| 986 | 748977405889503236 | 11235 | 3759 | Original tweet | https://t.co/nDPaYHrtNX |
| 987 | 748932637671223296 | 6461 | 2564 | Original tweet | https://t.co/BbcABzohKb |
| 988 | 748705597323898880 | 3047 | 1067 | Original tweet | https://t.co/eA7k1ZQslA |
| 989 | 748699167502000129 | 5213 | 1814 | Original tweet | https://t.co/gGxjthmG1c |
| 990 | 748692773788876800 | 4659 | 1504 | Original tweet | https://t.co/vdr7DaRSa7 |
| 991 | 748575535303884801 | 6696 | 2272 | Original tweet | https://t.co/z5bAdtn9kd |
| 992 | 748568946752774144 | 2411 | 776 | Original tweet | https://t.co/uUncaAGH18 |
| 993 | 748346686624440324 | 5735 | 1413 | Original tweet | https://t.co/XFBrrqapZa |
| 994 | 748337862848962560 | 8462 | 4701 | Original tweet | https://t.co/QGGhZoTcwy |
| 995 | 748324050481647620 | 4078 | 867 | Original tweet | https://t.co/1sNtG7GgiO |
| 996 | 748307329658011649 | 4027 | 810 | Original tweet | https://t.co/KubWEqOIgO |
| 997 | 748220828303695873 | 15549 | 8825 | Original tweet | https://t.co/3BOVI2WZoH |
| 998 | 747963614829678593 | 6397 | 2444 | Original tweet | https://t.co/ZPfeRtOX0Q |
| 999 | 747933425676525569 | 7310 | 2894 | Original tweet | https://t.co/oQqlOsla4R |
| 1000 | 747885874273214464 | 3243 | 1116 | Original tweet | https://t.co/TGenMeXreW |
| 1001 | 747844099428986880 | 3084 | 851 | Original tweet | https://t.co/V7h5NMYbYz |
| 1002 | 747816857231626240 | 5346 | 1316 | Original tweet | https://t.co/L3U0j14N5R |
| 1003 | 747651430853525504 | 1520 | 179 | Original tweet | p |
| 1004 | 747648653817413632 | 14182 | 6614 | Original tweet | https://t.co/zexdr61Q5M |
| 1005 | 747600769478692864 | 2545 | 619 | Original tweet | https://t.co/eUGjGjjFVJ |
| 1006 | 747594051852075008 | 4065 | 1205 | Original tweet | https://t.co/Ie2mWXWjpr |
| 1007 | 747512671126323200 | 6110 | 1803 | Original tweet | https://t.co/12lICZN2SP |
| 1008 | 747461612269887489 | 4249 | 1169 | Original tweet | https://t.co/x4IUNKV79Y |
| 1009 | 747439450712596480 | 5965 | 2184 | Original tweet | https://t.co/VCijm2eVpR |
| 1010 | 747242308580548608 | 0 | 3257 | Original tweet | https://… |
| 1011 | 747219827526344708 | 5792 | 1791 | Original tweet | https://t.co/uT7QeZI34U |
| 1012 | 747204161125646336 | 3722 | 1038 | Original tweet | https://t.co/dmdEBOEctC |
| 1013 | 747103485104099331 | 10534 | 4548 | Original tweet | https://t.co/DX1JUHJVN7 |
| 1014 | 746906459439529985 | 3168 | 336 | Original tweet | https://t.co/c7WXaB2nqX |
| 1015 | 746872823977771008 | 6593 | 2429 | Original tweet | https://t.co/9e48aPrBm2 |
| 1016 | 746818907684614144 | 5807 | 1944 | Original tweet | https://t.co/CuNA7OwfKQ |
| 1017 | 746790600704425984 | 5345 | 1806 | Original tweet | https://t.co/jeWEGUgbXf |
| 1018 | 746757706116112384 | 10520 | 4432 | Original tweet | https://t.co/bROYbceZ1u |
| 1019 | 746726898085036033 | 6648 | 2037 | Original tweet | https://t.co/gLbLiZtwsp |
| 1020 | 746542875601690625 | 5520 | 2104 | Original tweet | https://t.co/6ZRoZUWFmd |
| 1021 | 746521445350707200 | 0 | 1110 | Original tweet | https:/… |
| 1022 | 746507379341139972 | 5094 | 1226 | Original tweet | https://t.co/PlR6hjqvr5 |
| 1023 | 746369468511756288 | 6637 | 1854 | Original tweet | https://t.co/5qpBTTpgUt |
| 1024 | 746131877086527488 | 7565 | 2511 | Original tweet | https://t.co/uRI7HBgGJX |
| 1025 | 746056683365994496 | 3904 | 931 | Original tweet | https://t.co/VJgbgIzIHx |
| 1026 | 745789745784041472 | 4437 | 1207 | Original tweet | https://t.co/3wc246LOtu |
| 1027 | 745712589599014916 | 7652 | 2636 | Original tweet | https://t.co/QHbvtvaw8E |
| 1028 | 745433870967832576 | 7824 | 2894 | Original tweet | https://t.co/oYbVR4nBsR |
| 1029 | 745422732645535745 | 9412 | 2768 | Original tweet | https://t.co/nc53zEN0hZ |
| 1030 | 745314880350101504 | 7863 | 3131 | Original tweet | https://t.co/AWMeXJJz64 |
| 1031 | 745074613265149952 | 8605 | 3976 | Original tweet | https://t.co/MuuwkkLrHh |
| 1032 | 745057283344719872 | 7945 | 2585 | Original tweet | https://t.co/BkgU3rrsXA |
| 1033 | 744995568523612160 | 3277 | 716 | Original tweet | https://t.co/2FPb45NXrK |
| 1034 | 744971049620602880 | 8652 | 3042 | Original tweet | https://t.co/KgSEkrPA3r |
| 1035 | 744709971296780288 | 6150 | 1771 | Original tweet | https://t.co/zAzaRT6NnT |
| 1036 | 744334592493166593 | 7443 | 2412 | Original tweet | https://t.co/hrJugNHs2Z |
| 1037 | 744234799360020481 | 131075 | 79515 | Original tweet | https://t.co/7wE9LTEXC4 |
| 1038 | 744223424764059648 | 1868 | 424 | Original tweet | https://t.co/RNqS7C4Y4N |
| 1039 | 743980027717509120 | 4551 | 1231 | Original tweet | https://t.co/Kxda28JmQ2 |
| 1040 | 743895849529389061 | 3999 | 1087 | Original tweet | https://t.co/gCCrY8P0K9 |
| 1041 | 743835915802583040 | 0 | 2387 | Original tweet | https://t.co/0Dv… |
| 1042 | 743609206067040256 | 4917 | 1560 | Original tweet | https://t.co/YwfN1lbpKA |
| 1043 | 743595368194129920 | 20275 | 7445 | Original tweet | https://t.co/EVuqdEO66N |
| 1044 | 743545585370791937 | 3863 | 1066 | Original tweet | https://t.co/vU3tKr4vTn |
| 1045 | 743510151680958465 | 8671 | 4185 | Original tweet | https://t.co/qGeVjHSUKH |
| 1046 | 743253157753532416 | 4624 | 1366 | Original tweet | https://t.co/gSmp31Zrsx |
| 1047 | 743222593470234624 | 6792 | 2164 | Original tweet | https://t.co/xOBKCdpzaa |
| 1048 | 743210557239623680 | 4215 | 1560 | Original tweet | https://t.co/EkLku795aO |
| 1049 | 742534281772302336 | 7744 | 4011 | Original tweet | https://t.co/G4fNhzelDv |
| 1050 | 742528092657332225 | 4878 | 2245 | Original tweet | https://t.co/UHvjxm9B0O |
| 1051 | 742465774154047488 | 7916 | 4382 | Original tweet | https://t.co/hBTzPmj36Z |
| 1052 | 742423170473463808 | 10812 | 4319 | Original tweet | https://t.co/BXIuvkQO9b |
| 1053 | 742385895052087300 | 7457 | 2266 | Original tweet | https://t.co/ULdPY6CLpq |
| 1054 | 742161199639494656 | 4743 | 1547 | Original tweet | https://t.co/bZaHC3lvTL |
| 1055 | 742150209887731712 | 5661 | 1783 | Original tweet | https://t.co/PprXoqZuKY |
| 1056 | 741793263812808706 | 4982 | 1698 | Original tweet | https://t.co/d3LELGVlqu |
| 1057 | 741743634094141440 | 8945 | 3144 | Original tweet | https://t.co/rYxJ0UQtbE |
| 1058 | 741438259667034112 | 4026 | 937 | Original tweet | https://t.co/pXU77HPbJ5 |
| 1059 | 741303864243200000 | 9631 | 3650 | Original tweet | https://t.co/O4iw9NlLaQ |
| 1060 | 741099773336379392 | 10997 | 6247 | Original tweet | https://t.co/7muyOQXbGJ |
| 1061 | 741067306818797568 | 10342 | 3520 | Original tweet | https://t.co/o5J479bZUC |
| 1062 | 740995100998766593 | 7018 | 3154 | Original tweet | https://t.co/nt2x3fHaRJ |
| 1063 | 740711788199743490 | 3736 | 1062 | Original tweet | https://t.co/CmLoKMbOHv |
| 1064 | 740699697422163968 | 3101 | 888 | Original tweet | https://t.co/LjzZKQ7vmK |
| 1065 | 740676976021798912 | 19881 | 7724 | Original tweet | https://t.co/sMbMw5Z2XC |
| 1066 | 740373189193256964 | 20648 | 9220 | Original tweet | https://t.co/XAVDNDaVgQ |
| 1067 | 740365076218183684 | 2727 | 495 | Original tweet | https://t.co/u1GHWxhC85 |
| 1068 | 740359016048689152 | 3610 | 967 | Original tweet | https://t.co/0HmBk5sSbW |
| 1069 | 740214038584557568 | 7335 | 2220 | Original tweet | https://t.co/0yolOOyD3X |
| 1070 | 739979191639244800 | 21898 | 6719 | Original tweet | https://t.co/7AKdkCOlMf |
| 1071 | 739932936087216128 | 4443 | 1217 | Original tweet | https://t.co/yctnFptdQ1 |
| 1072 | 739844404073074688 | 4138 | 966 | Original tweet | https://t.co/4qiuC0lXq5 |
| 1073 | 739623569819336705 | 4185 | 1547 | Original tweet | https://t.co/vdgtdb6rON |
| 1074 | 739606147276148736 | 5897 | 1876 | Original tweet | https://t.co/sLUC4th3Zj |
| 1075 | 739544079319588864 | 43694 | 24319 | Original tweet | https://t.co/zxw8d5g94P |
| 1076 | 739485634323156992 | 7887 | 3309 | Original tweet | https://t.co/rRULp7XFnO |
| 1077 | 739238157791694849 | 75163 | 52360 | Original tweet | https://t.co/YcXgHfp1EC |
| 1078 | 738891149612572673 | 115 | 6 | Original tweet | 0 |
| 1079 | 738885046782832640 | 4127 | 1283 | Original tweet | https://t.co/EfejX3iRGr |
| 1080 | 738883359779196928 | 3661 | 917 | Original tweet | https://t.co/9eCXpVExJc |
| 1081 | 738537504001953792 | 5575 | 1759 | Original tweet | https://t.co/AxSiqAKEKu |
| 1082 | 738402415918125056 | 3599 | 955 | Original tweet | https://t.co/s96OYXZIfK |
| 1083 | 738184450748633089 | 4727 | 1360 | Original tweet | https://t.co/twxYcPOafl |
| 1084 | 738166403467907072 | 9635 | 3828 | Original tweet | https://t.co/P8bgOMMTRs |
| 1085 | 738156290900254721 | 2768 | 748 | Original tweet | https://t.co/nrzvzPuTvC |
| 1086 | 737826014890496000 | 5757 | 2006 | Original tweet | https://t.co/EZx0YjPjPK |
| 1087 | 737800304142471168 | 10943 | 3904 | Original tweet | https://t.co/KxkOgq80Xj |
| 1088 | 737678689543020544 | 5528 | 1509 | Original tweet | https://t.co/VflvQLH2y5 |
| 1089 | 737445876994609152 | 11302 | 5048 | Original tweet | https://t.co/CaG9MzD3WT |
| 1090 | 737322739594330112 | 3953 | 907 | Original tweet | https://t.co/3xqGVH0Dhw |
| 1091 | 737310737551491075 | 16040 | 8329 | Original tweet | https://t.co/wvjqSCN6iC |
| 1092 | 736736130620620800 | 4736 | 1972 | Original tweet | https://t.co/447tyBN0mW |
| 1093 | 736392552031657984 | 19450 | 8407 | Original tweet | https://t.co/u1ulQ5heLX |
| 1094 | 736365877722001409 | 4367 | 1408 | Original tweet | https://t.co/e3tfXJLi40 |
| 1095 | 736225175608430592 | 8901 | 3115 | Original tweet | https://t.co/qXteK6Atxc |
| 1096 | 736010884653420544 | 8652 | 3355 | Original tweet | https://t.co/O1TLuYjsNS |
| 1097 | 735991953473572864 | 3934 | 1283 | Original tweet | https://t.co/A216OjIdca |
| 1098 | 735648611367784448 | 4397 | 1237 | Original tweet | https://t.co/t6TxTwTLEK |
| 1099 | 735635087207878657 | 6776 | 2659 | Original tweet | https://t.co/IvFSlNXpgj |
| 1100 | 735274964362878976 | 9629 | 4707 | Original tweet | https://t.co/aTU53NNUkt |
| 1101 | 735256018284875776 | 3675 | 993 | Original tweet | https://t.co/MRYv7nDPyS |
| 1102 | 735137028879360001 | 3428 | 1092 | Original tweet | https://t.co/5bdCpPlno9 |
| 1103 | 734912297295085568 | 2993 | 572 | Original tweet | https://t.co/9MGouPwQmK |
| 1104 | 734787690684657664 | 13745 | 7102 | Original tweet | https://t.co/BPoaHySYwA |
| 1105 | 734776360183431168 | 2742 | 608 | Original tweet | https://t.co/qw07vhVHuO |
| 1106 | 734559631394082816 | 1646 | 451 | Original tweet | https://t.co/OufVDk23JC |
| 1107 | 733828123016450049 | 3926 | 881 | Original tweet | https://t.co/RFToQQI8fJ |
| 1108 | 733822306246479872 | 4015 | 1141 | Original tweet | https://t.co/mVfqRdppTL |
| 1109 | 733482008106668032 | 3438 | 1065 | Original tweet | https://t.co/jeAENpjH7L |
| 1110 | 733460102733135873 | 4605 | 1451 | Original tweet | https://t.co/0b41Q4DKCA |
| 1111 | 733109485275860992 | 44619 | 17621 | Original tweet | https://t.co/pG2inLaOda |
| 1112 | 732732193018155009 | 2671 | 599 | Original tweet | https://t.co/rVOLuNRpjH |
| 1113 | 732726085725589504 | 3855 | 1003 | Original tweet | https://t.co/QwiCVLPMNL |
| 1114 | 732585889486888962 | 4016 | 868 | Original tweet | https://t.co/sVnJfWVjUp |
| 1115 | 732375214819057664 | 8832 | 2838 | Original tweet | https://t.co/aA2GiTGvlE |
| 1116 | 732005617171337216 | 16324 | 6154 | Original tweet | https://t.co/ghyT4Ubk1r |
| 1117 | 731285275100512256 | 3798 | 1090 | Original tweet | https://t.co/5phLAnGPTP |
| 1118 | 731156023742988288 | 4196 | 1434 | Original tweet | https://t.co/yGQI3He3xv |
| 1119 | 730924654643314689 | 6682 | 2234 | Original tweet | https://t.co/2yctWAUZ3Z |
| 1120 | 730573383004487680 | 5407 | 2435 | Original tweet | https://t.co/CnUl2uDBBV |
| 1121 | 730427201120833536 | 3809 | 1176 | Original tweet | https://t.co/WyqNFvEulG |
| 1122 | 730211855403241472 | 4180 | 1182 | Original tweet | https://t.co/K7pthJXjWE |
| 1123 | 730196704625098752 | 5339 | 2172 | Original tweet | https://t.co/rXvcElhoog |
| 1124 | 729854734790754305 | 4396 | 1268 | Original tweet | https://t.co/jVxOGKEU0z |
| 1125 | 729838605770891264 | 1856 | 431 | Original tweet | https://t.co/85dTK7XCXB |
| 1126 | 729823566028484608 | 4358 | 1390 | Original tweet | https://t.co/Ebjt6Y4fMh |
| 1127 | 729463711119904772 | 6340 | 2586 | Original tweet | https://t.co/f2VUpy4WO0 |
| 1128 | 729113531270991872 | 2054 | 370 | Original tweet | https://t.co/vNjvr5Bl9u |
| 1129 | 728986383096946689 | 3460 | 917 | Original tweet | https://t.co/kiuXRXcg4B |
| 1130 | 728760639972315136 | 5090 | 1911 | Original tweet | https://t.co/Cofwoy7Vpq |
| 1131 | 728751179681943552 | 3032 | 757 | Original tweet | https://t.co/XD3ort1PsE |
| 1132 | 728653952833728512 | 3620 | 1169 | Original tweet | https://t.co/O10zjJ2Ixs |
| 1133 | 728409960103686147 | 5383 | 2269 | Original tweet | https://t.co/5i8fORVKgr |
| 1134 | 728387165835677696 | 3999 | 1075 | Original tweet | https://t.co/SiaiTWgsfP |
| 1135 | 728046963732717569 | 4722 | 1328 | Original tweet | https://t.co/9aMxSbOaAZ |
| 1136 | 728035342121635841 | 4953 | 1872 | Original tweet | https://t.co/4RlLA5ObMh |
| 1137 | 728015554473250816 | 4479 | 1219 | Original tweet | https://t.co/Z167HgtnBi |
| 1138 | 727685679342333952 | 3206 | 720 | Original tweet | https://t.co/yJ26LNuyj5 |
| 1139 | 727644517743104000 | 6431 | 1962 | Original tweet | https://t.co/qv3aUwaouT |
| 1140 | 727524757080539137 | 4900 | 1379 | Original tweet | https://t.co/fUyDIFkBwx |
| 1141 | 727314416056803329 | 3623 | 834 | Original tweet | https://t.co/SbaelU6zRs |
| 1142 | 727286334147182592 | 3324 | 920 | Original tweet | https://t.co/bbta2Q4URK |
| 1143 | 727175381690781696 | 4209 | 1540 | Original tweet | https://t.co/vXLkvyNQHp |
| 1144 | 727155742655025152 | 3983 | 1490 | Original tweet | https://t.co/BRkhj6tdN0 |
| 1145 | 726935089318363137 | 7496 | 2738 | Original tweet | https://t.co/DxlX1yTVYY |
| 1146 | 726887082820554753 | 4195 | 1677 | Original tweet | https://t.co/2AVcJ2BZsy |
| 1147 | 726828223124897792 | 3882 | 1124 | Original tweet | https://t.co/DWNrPPXgHA |
| 1148 | 726224900189511680 | 4811 | 1302 | Original tweet | https://t.co/Rgbni2Ns8z |
| 1149 | 725842289046749185 | 7691 | 2970 | Original tweet | https://t.co/vtVHtKFtBH |
| 1150 | 725786712245440512 | 4537 | 1527 | Original tweet | https://t.co/uIdGqug9rw |
| 1151 | 725729321944506368 | 5646 | 2009 | Original tweet | https://t.co/adQt5a6TZU |
| 1152 | 725458796924002305 | 1541 | 703 | Original tweet | https://t.co/BHICimO58W |
| 1153 | 724983749226668032 | 4040 | 1462 | Original tweet | https://t.co/qFqLtudIiD |
| 1154 | 724771698126512129 | 2593 | 725 | Original tweet | https://t.co/JlFqOhrHEs |
| 1155 | 724405726123311104 | 5800 | 1847 | Original tweet | https://t.co/nRUaKWnJfH |
| 1156 | 724049859469295616 | 4738 | 1984 | Original tweet | https://t.co/XTsZTgilnT |
| 1157 | 724046343203856385 | 2901 | 620 | Original tweet | https://t.co/pIQEdbBxdL |
| 1158 | 724004602748780546 | 4561 | 1790 | Original tweet | https://t.co/EdKG43VvEl |
| 1159 | 723912936180330496 | 4236 | 1374 | Original tweet | https://t.co/AhMfUu6Onm |
| 1160 | 723688335806480385 | 8435 | 3347 | Original tweet | https://t.co/YgNuDQbv89 |
| 1161 | 723673163800948736 | 3291 | 1011 | Original tweet | https://t.co/Dz6MiVssVU |
| 1162 | 723179728551723008 | 5761 | 2110 | Original tweet | https://t.co/8dNWp1cSEa |
| 1163 | 722974582966214656 | 4493 | 1764 | Original tweet | https://t.co/eV1diwds8a |
| 1164 | 722613351520608256 | 5393 | 1831 | Original tweet | https://t.co/qjd0UJKYUY |
| 1165 | 721503162398597120 | 5086 | 2124 | Original tweet | https://t.co/IOAk9i4UvE |
| 1166 | 721001180231503872 | 2748 | 686 | Original tweet | https://t.co/AFzzKqR4tT |
| 1167 | 720785406564900865 | 3400 | 866 | Original tweet | https://t.co/0l4I8famYp |
| 1168 | 720775346191278080 | 2702 | 760 | Original tweet | https://t.co/XSEXdQupej |
| 1169 | 720415127506415616 | 4503 | 1681 | Original tweet | https://t.co/5Lra3e4rrw |
| 1170 | 720389942216527872 | 6974 | 2840 | Original tweet | https://t.co/Pb6iMmo0wk |
| 1171 | 720340705894408192 | 3131 | 1098 | Original tweet | https://t.co/BIRRF3bcWH |
| 1172 | 720059472081784833 | 4229 | 1268 | Original tweet | https://t.co/pRHX8yn9Yu |
| 1173 | 720043174954147842 | 5332 | 2253 | Original tweet | https://t.co/SoZq2Xoopv |
| 1174 | 719991154352222208 | 5281 | 1979 | Original tweet | https://t.co/mvnBGaWULV |
| 1175 | 719704490224398336 | 4974 | 1645 | Original tweet | https://t.co/y206kWHAj0 |
| 1176 | 719551379208073216 | 5515 | 2192 | Original tweet | https://t.co/S6JHaSMtln |
| 1177 | 719367763014393856 | 3022 | 827 | Original tweet | https://t.co/7mmjyearQW |
| 1178 | 719339463458033665 | 4822 | 1403 | Original tweet | https://t.co/HW50zkcf2R |
| 1179 | 719332531645071360 | 3711 | 1078 | Original tweet | https://t.co/htrlmC7saz |
| 1180 | 718971898235854848 | 3818 | 1231 | Original tweet | https://t.co/JRckDkZVRT |
| 1181 | 718939241951195136 | 5720 | 1973 | Original tweet | https://t.co/I9qoe1uEih |
| 1182 | 718631497683582976 | 20697 | 9126 | Original tweet | https://t.co/D9jbbmPmos |
| 1183 | 718613305783398402 | 2669 | 542 | Original tweet | https://t.co/lK9YDkRzPj |
| 1184 | 718540630683709445 | 2730 | 1137 | Original tweet | https://t.co/zSbyvm62xZ |
| 1185 | 718460005985447936 | 2846 | 602 | Original tweet | https://t.co/JyNmyjy3fe |
| 1186 | 718454725339934721 | 5320 | 1685 | Original tweet | https://t.co/4kD16wMA1Z |
| 1187 | 718246886998687744 | 2115 | 565 | Original tweet | https://t.co/FmxOpf2Sgl |
| 1188 | 718234618122661888 | 4217 | 1127 | Original tweet | https://t.co/05S8oYztgb |
| 1189 | 717841801130979328 | 2660 | 670 | Original tweet | https://t.co/ucOEfr2rjV |
| 1190 | 717790033953034240 | 3170 | 1272 | Original tweet | https://t.co/fv9e9AtzSG |
| 1191 | 717537687239008257 | 6281 | 2069 | Original tweet | https://t.co/2ATDsgHD4n |
| 1192 | 717428917016076293 | 1748 | 510 | Original tweet | https://t.co/6WTfJvtKx6 |
| 1193 | 717421804990701568 | 3446 | 945 | Original tweet | https://t.co/LBJqxMGaHi |
| 1194 | 717047459982213120 | 6826 | 2135 | Original tweet | https://t.co/fGgleFiBPq |
| 1195 | 717009362452090881 | 3583 | 1102 | Original tweet | https://t.co/JmgF4dMpw0 |
| 1196 | 716802964044845056 | 4627 | 1317 | Original tweet | https://t.co/SbX4e6Yg3o |
| 1197 | 716791146589110272 | 5204 | 1474 | Original tweet | https://t.co/h0trcJohYO |
| 1198 | 716730379797970944 | 1339 | 475 | Original tweet | https://t.co/Juid3nnLbC |
| 1199 | 716447146686459905 | 14327 | 6643 | Original tweet | https://t.co/gHWsCTu90E |
| 1200 | 716439118184652801 | 2574 | 247 | Original tweet | https://t.co/Kky1DPG4iq |
| 1201 | 716285507865542656 | 3041 | 1225 | Original tweet | https://t.co/WIWabMngQZ |
| 1202 | 716080869887381504 | 5272 | 1935 | Original tweet | https://t.co/UACnoyi8zu |
| 1203 | 715928423106027520 | 3485 | 987 | Original tweet | https://t.co/3BhMojONxq |
| 1204 | 715758151270801409 | 4085 | 1596 | Original tweet | https://t.co/wJX74TSgzP |
| 1205 | 715733265223708672 | 5093 | 1920 | Original tweet | https://t.co/cxl6xGY8B9 |
| 1206 | 715704790270025728 | 3055 | 634 | Original tweet | https://t.co/9PnKkKzoUp |
| 1207 | 715696743237730304 | 4257 | 1454 | Original tweet | https://t.co/cYPHuJYTjC |
| 1208 | 715680795826982913 | 4719 | 1813 | Original tweet | https://t.co/sSugyyRuTp |
| 1209 | 715360349751484417 | 5955 | 1772 | Original tweet | https://t.co/hwv7Wq6gDA |
| 1210 | 715342466308784130 | 3294 | 768 | Original tweet | https://t.co/vSufMAKm3C |
| 1211 | 715220193576927233 | 2630 | 736 | Original tweet | https://t.co/1OBdJkMOFx |
| 1212 | 715200624753819648 | 5578 | 2110 | Original tweet | https://t.co/tvVDY0G911 |
| 1213 | 715009755312439296 | 4550 | 1392 | Original tweet | https://t.co/TjnI33RE1i |
| 1214 | 714982300363173890 | 4094 | 1166 | Original tweet | https://t.co/jRm5J3YCmj |
| 1215 | 714962719905021952 | 8028 | 4816 | Original tweet | https://t.co/T9sgP9ttnQ |
| 1216 | 714957620017307648 | 4503 | 1595 | Original tweet | https://t.co/s8YcfZrWhK |
| 1217 | 714631576617938945 | 3571 | 1122 | Original tweet | https://t.co/3oeFfHjv0Z |
| 1218 | 714606013974974464 | 3938 | 1038 | Original tweet | https://t.co/zO4eb7C4tG |
| 1219 | 714485234495041536 | 2962 | 1313 | Original tweet | https://t.co/MfW2aym5UF |
| 1220 | 714258258790387713 | 3281 | 808 | Original tweet | https://t.co/Akzl5ynMmE |
| 1221 | 714251586676113411 | 3570 | 940 | Original tweet | https://t.co/rDVueNIcEi |
| 1222 | 714214115368108032 | 2480 | 990 | Original tweet | https://t.co/YMx4KWJUAB |
| 1223 | 714141408463036416 | 4673 | 1569 | Original tweet | https://t.co/O2RlKXigHu |
| 1224 | 713919462244790272 | 3564 | 869 | Original tweet | https://t.co/7vyAzIURrE |
| 1225 | 713909862279876608 | 2078 | 616 | Original tweet | https://t.co/7IWKfbfihS |
| 1226 | 713900603437621249 | 3062 | 829 | Original tweet | https://t.co/mpvaVxKmc1 |
| 1227 | 713761197720473600 | 5308 | 1541 | Original tweet | https://t.co/QP6GHi5az9 |
| 1228 | 713411074226274305 | 4802 | 1440 | Original tweet | https://t.co/jVJJKlPbvq |
| 1229 | 713177543487135744 | 7854 | 3183 | Original tweet | https://t.co/SqnG9Ap28J |
| 1230 | 713175907180089344 | 4851 | 1630 | Original tweet | https://t.co/xT7XaY4gnW |
| 1231 | 712809025985978368 | 20378 | 7602 | Original tweet | https://t.co/HVGs5aAKAn |
| 1232 | 712717840512598017 | 13474 | 5616 | Original tweet | https://t.co/83RGhdIQz2 |
| 1233 | 712668654853337088 | 4531 | 1367 | Original tweet | https://t.co/88aedAmxcl |
| 1234 | 712438159032893441 | 5799 | 1756 | Original tweet | https://t.co/7zjEC501Ul |
| 1235 | 712309440758808576 | 269 | 26 | Original tweet | https://t.co/kJIMNyMNKV |
| 1236 | 712097430750289920 | 4144 | 1172 | Original tweet | https://t.co/8AGcQ4hIfK |
| 1237 | 712092745624633345 | 3211 | 1016 | Original tweet | https://t.co/tA0ZiQ7JcG |
| 1238 | 712085617388212225 | 3531 | 556 | Original tweet | https://t.co/yagmFdKlyL |
| 1239 | 712065007010385924 | 2451 | 700 | Original tweet | https://t.co/o2GvskrhHt |
| 1240 | 711998809858043904 | 0 | 138 | Original tweet | https://t.co/j6FQGhxYuN |
| 1241 | 711968124745228288 | 8776 | 2601 | Original tweet | https://t.co/2e6cUtKUuc |
| 1242 | 711743778164514816 | 3095 | 1101 | Original tweet | https://t.co/QcSIRDpfVg |
| 1243 | 711732680602345472 | 9756 | 4653 | Original tweet | https://t.co/1KiuZqqOD4 |
| 1244 | 711694788429553666 | 35865 | 20500 | Original tweet | https://t.co/Ezu6jQrKAZ |
| 1245 | 711652651650457602 | 4228 | 1037 | Original tweet | https://t.co/Sk3CbhmKSW |
| 1246 | 711363825979756544 | 3996 | 1287 | Original tweet | https://t.co/nJIXSPfedK |
| 1247 | 711306686208872448 | 3596 | 819 | Original tweet | https://t.co/wcwoGOkZvz |
| 1248 | 711008018775851008 | 3275 | 710 | Original tweet | https://t.co/68iNM7B5gW |
| 1249 | 710997087345876993 | 4960 | 1561 | Original tweet | https://t.co/Mv37BHEyyD |
| 1250 | 710844581445812225 | 2775 | 779 | Original tweet | https://t.co/UgkTw7TKyM |
| 1251 | 710833117892898816 | 2937 | 606 | Original tweet | https://t.co/PmTR4kxZkq |
| 1252 | 710658690886586372 | 2529 | 636 | Original tweet | https://t.co/0eb7R1Om12 |
| 1253 | 710609963652087808 | 5227 | 2624 | Original tweet | https://t.co/DU7Rb3NDiy |
| 1254 | 710588934686908417 | 4968 | 2107 | Original tweet | https://t.co/kzMVMU8HBV |
| 1255 | 710296729921429505 | 2574 | 833 | Original tweet | https://t.co/VmtzwAuotq |
| 1256 | 710283270106132480 | 2308 | 580 | Original tweet | https://t.co/ONuBILIYXZ |
| 1257 | 710272297844797440 | 4945 | 1425 | Original tweet | https://t.co/odfLzBonG2 |
| 1258 | 710269109699739648 | 2613 | 1257 | Original tweet | https://t.co/OcCDb2bng5 |
| 1259 | 710153181850935296 | 3153 | 1006 | Original tweet | https://t.co/fG5Pk3Et1I |
| 1260 | 710140971284037632 | 3017 | 1008 | Original tweet | https://t.co/nLuPY3pY12 |
| 1261 | 710117014656950272 | 5999 | 2233 | Original tweet | https://t.co/h1OX2mLtxV |
| 1262 | 709918798883774466 | 3250 | 1215 | Original tweet | https://t.co/R1gLc5vDqG |
| 1263 | 709901256215666688 | 732 | 112 | Original tweet | https://t.co/k5xsufRKYm https://t.co/ShXk46V13r |
| 1264 | 709852847387627521 | 3824 | 1336 | Original tweet | https://t.co/BNdVZEHRow |
| 1265 | 709566166965075968 | 3865 | 1367 | Original tweet | https://t.co/E9jaU59bh9 |
| 1266 | 709556954897764353 | 3593 | 1204 | Original tweet | https://t.co/ijJB0DuOIC |
| 1267 | 709519240576036864 | 1620 | 277 | Original tweet | https://t.co/aczGAV2dK4 |
| 1268 | 709449600415961088 | 2420 | 665 | Original tweet | https://t.co/c6af6nYEPo |
| 1269 | 709409458133323776 | 2855 | 788 | Original tweet | https://t.co/Yu0K98VZ9A |
| 1270 | 709225125749587968 | 2615 | 647 | Original tweet | https://t.co/k6fEWHSALn |
| 1271 | 709207347839836162 | 13755 | 6567 | Original tweet | https://t.co/qcZDZGCapg |
| 1272 | 709198395643068416 | 2634 | 721 | Original tweet | https://t.co/sedre1ivTK |
| 1273 | 709179584944730112 | 2213 | 763 | Original tweet | https://t.co/CLe9ETEjeF |
| 1274 | 709158332880297985 | 2236 | 470 | Original tweet | https://t.co/FjAj3ggXrR |
| 1275 | 709042156699303936 | 5197 | 1864 | Original tweet | https://t.co/7BkkVNu5pd |
| 1276 | 708853462201716736 | 1941 | 745 | Original tweet | https://t.co/RXjEwpVJf0 |
| 1277 | 708845821941387268 | 3226 | 1015 | Original tweet | https://t.co/5DLJB4ssvI |
| 1278 | 708834316713893888 | 1860 | 571 | Original tweet | https://t.co/Vd2FqHIIGn |
| 1279 | 708810915978854401 | 18036 | 7848 | Original tweet | https://t.co/2KcuJXL2r4 |
| 1280 | 708738143638450176 | 2997 | 917 | Original tweet | https://t.co/wsCB6LFNxD |
| 1281 | 708711088997666817 | 2790 | 834 | Original tweet | https://t.co/Ah7WlYTUBQ |
| 1282 | 708479650088034305 | 2768 | 765 | Original tweet | https://t.co/uC8kUqAz0W |
| 1283 | 708469915515297792 | 3357 | 926 | Original tweet | https://t.co/VwDc6PTDzk |
| 1284 | 708400866336894977 | 17516 | 11330 | Original tweet | https://t.co/xdNNEZdGJY |
| 1285 | 708356463048204288 | 3929 | 1520 | Original tweet | https://t.co/oSuEGw0BhX |
| 1286 | 708349470027751425 | 2568 | 831 | Original tweet | https://t.co/tK7a0AxQfd |
| 1287 | 708149363256774660 | 4672 | 1727 | Original tweet | https://t.co/VEFkvWCoHF |
| 1288 | 708130923141795840 | 3707 | 943 | Original tweet | https://t.co/XKhobeGuvT |
| 1289 | 708119489313951744 | 2937 | 1102 | Original tweet | https://t.co/kDamUfeIpm |
| 1290 | 708109389455101952 | 2124 | 610 | Original tweet | https://t.co/mhPSADiJmZ |
| 1291 | 708026248782585858 | 4799 | 2166 | Original tweet | https://t.co/5AJs8TIV1U |
| 1292 | 707995814724026368 | 3385 | 1273 | Original tweet | https://t.co/NiQQWzIzzq |
| 1293 | 707983188426153984 | 52 | 2 | Original tweet | ) |
| 1294 | 707969809498152960 | 2941 | 1097 | Original tweet | https://t.co/dGoTWNfIsm |
| 1295 | 707776935007539200 | 3593 | 1079 | Original tweet | https://t.co/DB8fyeDs8B |
| 1296 | 707741517457260545 | 2718 | 696 | Original tweet | https://t.co/0nMgoue8IR |
| 1297 | 707738799544082433 | 4495 | 2785 | Original tweet | https://t.co/2vRmkkOLcN |
| 1298 | 707693576495472641 | 3765 | 1133 | Original tweet | https://t.co/84L4ED9Tpi |
| 1299 | 707629649552134146 | 2834 | 997 | Original tweet | https://t.co/NL2KwOioBh |
| 1300 | 707610948723478529 | 18557 | 7236 | Original tweet | https://t.co/oHKJHghrp5 |
| 1301 | 707420581654872064 | 2499 | 789 | Original tweet | https://t.co/xOrUyj7K30 |
| 1302 | 707411934438625280 | 2486 | 673 | Original tweet | https://t.co/uQsCJ8pf51 |
| 1303 | 707387676719185920 | 3835 | 1490 | Original tweet | https://t.co/XP5o7zGn0E |
| 1304 | 707377100785885184 | 3603 | 1214 | Original tweet | https://t.co/iKThgKnW1j |
| 1305 | 707315916783140866 | 2698 | 727 | Original tweet | https://t.co/BjpOa52jQ4 |
| 1306 | 707297311098011648 | 3022 | 903 | Original tweet | https://t.co/B6dmZmJBdK |
| 1307 | 707059547140169728 | 2796 | 759 | Original tweet | https://t.co/D7rorf4YKL |
| 1308 | 707038192327901184 | 2404 | 900 | Original tweet | https://t.co/z0cs7E4Xjj |
| 1309 | 707021089608753152 | 4433 | 1540 | Original tweet | https://t.co/gHtW5cgyy7 |
| 1310 | 707014260413456384 | 2502 | 664 | Original tweet | https://t.co/15yCmd43zU |
| 1311 | 706904523814649856 | 15961 | 8830 | Original tweet | https://t.co/3PoKf6cw7f |
| 1312 | 706901761596989440 | 2264 | 680 | Original tweet | https://t.co/FMUxir5pYu |
| 1313 | 706681918348251136 | 3627 | 1103 | Original tweet | https://t.co/CFPIcGcwJv |
| 1314 | 706644897839910912 | 2814 | 1224 | Original tweet | https://t.co/cdOkfEpjFw |
| 1315 | 706593038911545345 | 2363 | 718 | Original tweet | https://t.co/6aJrjKfNqX |
| 1316 | 706538006853918722 | 3778 | 1580 | Original tweet | https://t.co/bxjO45rXKd |
| 1317 | 706516534877929472 | 3404 | 1150 | Original tweet | https://t.co/KUS0xl7XIp |
| 1318 | 706346369204748288 | 3768 | 1035 | Original tweet | https://t.co/VZV6oMJmU6 |
| 1319 | 706310011488698368 | 23443 | 9034 | Original tweet | https://t.co/GGmcTIkBbf |
| 1320 | 706291001778950144 | 1861 | 522 | Original tweet | https://t.co/qy33OBcexg |
| 1321 | 706265994973601792 | 2979 | 1030 | Original tweet | https://t.co/lA6a8GefrV |
| 1322 | 706169069255446529 | 4291 | 2511 | Original tweet | https://t.co/WN4C6miCzR |
| 1323 | 706166467411222528 | 5636 | 1819 | Original tweet | https://t.co/sA7P3JSqiv |
| 1324 | 706153300320784384 | 1632 | 437 | Original tweet | https://t.co/KxYXHUHUi2 |
| 1325 | 705975130514706432 | 3397 | 842 | Original tweet | https://t.co/cfn81n3FLO |
| 1326 | 705970349788291072 | 3440 | 1008 | Original tweet | https://t.co/8tjnz1L8DI |
| 1327 | 705898680587526145 | 2597 | 643 | Original tweet | https://t.co/c67nUjwmFs |
| 1328 | 705786532653883392 | 2132 | 596 | Original tweet | https://t.co/xwPE9faVZR |
| 1329 | 705591895322394625 | 3475 | 1308 | Original tweet | https://t.co/nPTBsdm3BF |
| 1330 | 705475953783398401 | 3231 | 1045 | Original tweet | https://t.co/zQUuVu812n |
| 1331 | 705442520700944385 | 4877 | 1859 | Original tweet | https://t.co/EEIkAGVY64 |
| 1332 | 705428427625635840 | 4188 | 1931 | Original tweet | https://t.co/ih6epBOxIA |
| 1333 | 705239209544720384 | 3290 | 854 | Original tweet | https://t.co/wnsblfu7XE |
| 1334 | 705223444686888960 | 2829 | 900 | Original tweet | https://t.co/YMkxhGWUqv |
| 1335 | 705102439679201280 | 2342 | 585 | Original tweet | https://t.co/Pg18CDFC7Z |
| 1336 | 705066031337840642 | 2378 | 683 | Original tweet | https://t.co/VA6jnNUyuW |
| 1337 | 704871453724954624 | 4585 | 1245 | Original tweet | https://t.co/mIQ1KoVsmU |
| 1338 | 704859558691414016 | 2462 | 612 | Original tweet | https://t.co/81mvJ0rGRu |
| 1339 | 704847917308362754 | 5594 | 1727 | Original tweet | https://t.co/kQPVxqA3gq |
| 1340 | 704819833553219584 | 2906 | 1136 | Original tweet | https://t.co/EatAd8JhyW |
| 1341 | 704761120771465216 | 7283 | 3257 | Original tweet | https://t.co/Lu0ECu5tO5 |
| 1342 | 704499785726889984 | 3212 | 1124 | Original tweet | https://t.co/dlF93GLnDc |
| 1343 | 704491224099647488 | 840 | 97 | Original tweet | C |
| 1344 | 704480331685040129 | 3723 | 1197 | Original tweet | https://t.co/qv6qlEUCEe |
| 1345 | 704364645503647744 | 8804 | 3999 | Original tweet | https://t.co/5zX5XD3i6K |
| 1346 | 704347321748819968 | 1729 | 393 | Original tweet | https://t.co/INphk4ltkZ |
| 1347 | 704134088924532736 | 1653 | 519 | Original tweet | https://t.co/h5aI0Tim4j |
| 1348 | 704113298707505153 | 2031 | 629 | Original tweet | https://t.co/XpYMBQ1FD8 |
| 1349 | 704054845121142784 | 3201 | 1028 | Original tweet | https://t.co/9dpcw6MdWa |
| 1350 | 703774238772166656 | 2020 | 526 | Original tweet | https://t.co/ZvxdB4i9AG |
| 1351 | 703769065844768768 | 3621 | 1276 | Original tweet | https://t.co/QQZDCYl6zT |
| 1352 | 703631701117943808 | 2853 | 772 | Original tweet | https://t.co/XTVbSRdvcp |
| 1353 | 703611486317502464 | 4229 | 1709 | Original tweet | https://t.co/JSmX1FIEaW |
| 1354 | 703425003149250560 | 4162 | 1559 | Original tweet | https://t.co/6JYLpUmBrC |
| 1355 | 703407252292673536 | 2685 | 786 | Original tweet | https://t.co/GUbFF4o6dZ |
| 1356 | 703382836347330562 | 3837 | 1285 | Original tweet | https://t.co/B9dOrmnPVt |
| 1357 | 703356393781329922 | 2085 | 429 | Original tweet | https://t.co/8rc5I22bBf |
| 1358 | 703268521220972544 | 2152 | 618 | Original tweet | https://t.co/eBcqv9SPkY |
| 1359 | 703079050210877440 | 8064 | 3494 | Original tweet | https://t.co/hMjzhdUHaW |
| 1360 | 703041949650034688 | 28996 | 14198 | Original tweet | https://t.co/iHe6liLwWR |
| 1361 | 702932127499816960 | 2825 | 811 | Original tweet | https://t.co/LUFnwzznaV |
| 1362 | 702899151802126337 | 1772 | 509 | Original tweet | https://t.co/F9aLnADVIw |
| 1363 | 702684942141153280 | 3516 | 1215 | Original tweet | https://t.co/d2b5C2R0aO |
| 1364 | 702671118226825216 | 2398 | 634 | Original tweet | https://t.co/MpH1Fe9LhZ |
| 1365 | 702598099714314240 | 11332 | 3712 | Original tweet | https://t.co/IpAoztle2s |
| 1366 | 702539513671897089 | 3134 | 1091 | Original tweet | https://t.co/4EnShAQjv6 |
| 1367 | 702332542343577600 | 3491 | 1755 | Original tweet | https://t.co/Dph4FDGoMd |
| 1368 | 702321140488925184 | 3604 | 1156 | Original tweet | https://t.co/7u8mM99Tj5 |
| 1369 | 702276748847800320 | 2706 | 860 | Original tweet | https://t.co/rSNCEiTtfI |
| 1370 | 702217446468493312 | 5268 | 1526 | Original tweet | https://t.co/y35Y1TJERY |
| 1371 | 701981390485725185 | 3755 | 1106 | Original tweet | https://t.co/fZRob6eotY |
| 1372 | 701952816642965504 | 4167 | 1149 | Original tweet | https://t.co/KInss2PXyX |
| 1373 | 701889187134500865 | 3905 | 1558 | Original tweet | https://t.co/rH9SQgZUnQ |
| 1374 | 701805642395348998 | 3752 | 1900 | Original tweet | https://t.co/8sdVenUAqr |
| 1375 | 701601587219795968 | 2299 | 523 | Original tweet | https://t.co/MWw3pVMhJA |
| 1376 | 701570477911896070 | 3080 | 1055 | Original tweet | https://t.co/yVdMsVYHIx |
| 1377 | 701545186879471618 | 2902 | 680 | Original tweet | https://t.co/SDVkc4m96M |
| 1378 | 701214700881756160 | 13475 | 5812 | Original tweet | https://t.co/JKXh0NbBNL |
| 1379 | 700890391244103680 | 2437 | 653 | Original tweet | https://t.co/TBv7Qh1zxZ |
| 1380 | 700864154249383937 | 2828 | 685 | Original tweet | https://t.co/ItSsE92gCW |
| 1381 | 700847567345688576 | 2637 | 558 | Original tweet | https://t.co/110Eeg7KW3 |
| 1382 | 700796979434098688 | 2669 | 1085 | Original tweet | https://t.co/5XaR0kj8cr |
| 1383 | 700747788515020802 | 25130 | 10673 | Original tweet | https://t.co/22x9SbCYCU |
| 1384 | 700518061187723268 | 2887 | 915 | Original tweet | https://t.co/JQGMP7kzjD |
| 1385 | 700505138482569216 | 2487 | 646 | Original tweet | https://t.co/5fMdH8GFaq |
| 1386 | 700462010979500032 | 4537 | 2031 | Original tweet | https://t.co/ALO02IAKCn |
| 1387 | 700167517596164096 | 2903 | 836 | Original tweet | https://t.co/A0h4lnhU4s |
| 1388 | 700151421916807169 | 2450 | 754 | Original tweet | https://t.co/o9aJVPB25n |
| 1389 | 700143752053182464 | 8282 | 3129 | Original tweet | https://t.co/Fbdr5orUrJ |
| 1390 | 700062718104104960 | 2890 | 778 | Original tweet | https://t.co/UtFI7eUCjE |
| 1391 | 700029284593901568 | 2262 | 661 | Original tweet | https://t.co/8Nuny4lLE3 |
| 1392 | 700002074055016451 | 3627 | 1529 | Original tweet | https://t.co/x0ZDlNqfb1 |
| 1393 | 699801817392291840 | 3345 | 1088 | Original tweet | https://t.co/qI8yvqKG02 |
| 1394 | 699788877217865730 | 2458 | 557 | Original tweet | https://t.co/5bjrIRqByp |
| 1395 | 699779630832685056 | 3039 | 1397 | Original tweet | https://t.co/B28ebc5LzQ |
| 1396 | 699775878809702401 | 2150 | 690 | Original tweet | https://t.co/TEHu55ZQKD |
| 1397 | 699691744225525762 | 11252 | 5174 | Original tweet | https://t.co/ZJnCxlIf62 |
| 1398 | 699446877801091073 | 6515 | 2938 | Original tweet | https://t.co/9fojElzIxx |
| 1399 | 699434518667751424 | 2384 | 577 | Original tweet | https://t.co/hTE2PEwGvi |
| 1400 | 699423671849451520 | 1505 | 383 | Original tweet | https://t.co/b8ncwl6TlE |
| 1401 | 699413908797464576 | 2258 | 688 | Original tweet | https://t.co/6r4GFZY5WS |
| 1402 | 699370870310113280 | 2053 | 497 | Original tweet | https://t.co/iNFIHvcVur |
| 1403 | 699323444782047232 | 3466 | 983 | Original tweet | https://t.co/Rizm1LWh4z |
| 1404 | 699088579889332224 | 2451 | 715 | Original tweet | https://t.co/VfLoDZecJ7 |
| 1405 | 699079609774645248 | 2677 | 745 | Original tweet | https://t.co/A2j2StfNgL |
| 1406 | 699072405256409088 | 3296 | 1325 | Original tweet | https://t.co/7WrAWKdBac |
| 1407 | 699060279947165696 | 4173 | 2059 | Original tweet | https://t.co/n6wND1v7il |
| 1408 | 699036661657767936 | 2863 | 1345 | Original tweet | https://t.co/7u6VnZ1UFe |
| 1409 | 698989035503689728 | 3701 | 1113 | Original tweet | https://t.co/3BrRIWjG35 |
| 1410 | 698953797952008193 | 2975 | 1020 | Original tweet | https://t.co/oW9XMYG3F4 |
| 1411 | 698907974262222848 | 2787 | 699 | Original tweet | https://t.co/GXq43zFfBu |
| 1412 | 698710712454139905 | 2710 | 774 | Original tweet | https://t.co/rKjK88D05Z |
| 1413 | 698703483621523456 | 1608 | 425 | Original tweet | https://t.co/hEH19t1eFp |
| 1414 | 698635131305795584 | 1400 | 388 | Original tweet | https://t.co/rb8nzVNh7F |
| 1415 | 698549713696649216 | 2536 | 704 | Original tweet | https://t.co/EPdQquc1dG |
| 1416 | 698355670425473025 | 2046 | 516 | Original tweet | https://t.co/MrdPZz1CGk |
| 1417 | 698342080612007937 | 2485 | 1074 | Original tweet | https://t.co/VmFfWMjNkp |
| 1418 | 698262614669991936 | 5214 | 2268 | Original tweet | https://t.co/S712MJXulD |
| 1419 | 698195409219559425 | 18408 | 6750 | Original tweet | https://t.co/GPaoH5qWEk |
| 1420 | 698178924120031232 | 3084 | 830 | Original tweet | https://t.co/BJbtCqGwZK |
| 1421 | 697995514407682048 | 1665 | 372 | Original tweet | https://t.co/yAASRDPJnQ |
| 1422 | 697990423684476929 | 3592 | 1451 | Original tweet | https://t.co/MVvbQW88Pv |
| 1423 | 697943111201378304 | 2638 | 776 | Original tweet | https://t.co/e8bj97CisO |
| 1424 | 697881462549430272 | 3313 | 1337 | Original tweet | https://t.co/pHktDjpFr8 |
| 1425 | 697630435728322560 | 1909 | 614 | Original tweet | https://t.co/VmF35YvtqP |
| 1426 | 697616773278015490 | 3467 | 1144 | Original tweet | https://t.co/Jxd5pR02Cn |
| 1427 | 697596423848730625 | 3306 | 1425 | Original tweet | https://t.co/5USjFjKI7Z |
| 1428 | 697575480820686848 | 2250 | 572 | Original tweet | https://t.co/PsqqotpBBQ |
| 1429 | 697516214579523584 | 2281 | 1282 | Original tweet | https://t.co/LHFfUyLBZT |
| 1430 | 697482927769255936 | 2662 | 765 | Original tweet | https://t.co/YKvt0J5MXr |
| 1431 | 697463031882764288 | 3748 | 1552 | Original tweet | https://t.co/HppvrYuamZ |
| 1432 | 697270446429966336 | 5131 | 2087 | Original tweet | https://t.co/7rS33sCKMS |
| 1433 | 697259378236399616 | 3611 | 1136 | Original tweet | https://t.co/iAeQNueou8 |
| 1434 | 697255105972801536 | 3316 | 1315 | Original tweet | https://t.co/Oe0XSGmfoP |
| 1435 | 697242256848379904 | 2753 | 751 | Original tweet | https://t.co/7GQ7BTxywN |
| 1436 | 696900204696625153 | 3492 | 1156 | Original tweet | https://t.co/NKuON5Al8i |
| 1437 | 696894894812565505 | 2594 | 758 | Original tweet | https://t.co/RJvUjgGH5z |
| 1438 | 696886256886657024 | 5317 | 2016 | Original tweet | https://t.co/WqoZtX9jmJ |
| 1439 | 696877980375769088 | 2689 | 802 | Original tweet | https://t.co/XhR7PAgcwF |
| 1440 | 696754882863349760 | 1615 | 396 | Original tweet | https://t.co/l9k7TPP7Tp |
| 1441 | 696744641916489729 | 2293 | 1069 | Original tweet | https://t.co/ghhbMAFPW8 |
| 1442 | 696713835009417216 | 2613 | 757 | Original tweet | https://t.co/6J8Ibwy1X6 |
| 1443 | 696518437233913856 | 4274 | 1887 | Original tweet | r |
| 1444 | 696490539101908992 | 1339 | 170 | Original tweet | e |
| 1445 | 696488710901260288 | 2788 | 1166 | Original tweet | https://t.co/zKzq4nIY86 |
| 1446 | 696405997980676096 | 3531 | 1284 | Original tweet | https://t.co/CIFLjiTFwZ |
| 1447 | 696100768806522880 | 2125 | 750 | Original tweet | https://t.co/7ODQWHwYDx |
| 1448 | 695816827381944320 | 3287 | 1320 | Original tweet | https://t.co/VsQdLxrv9h |
| 1449 | 695794761660297217 | 3490 | 880 | Original tweet | https://t.co/PccQ1CFEDd |
| 1450 | 695767669421768709 | 2060 | 854 | Original tweet | https://t.co/U0D1sbIDrG |
| 1451 | 695629776980148225 | 5020 | 2377 | Original tweet | https://t.co/NIvxgSQ9BS |
| 1452 | 695446424020918272 | 4787 | 2026 | Original tweet | https://t.co/f9qlKiv39T |
| 1453 | 695409464418041856 | 9460 | 4017 | Original tweet | https://t.co/lORINwFXIV |
| 1454 | 695314793360662529 | 4004 | 1675 | Original tweet | https://t.co/ioFy0cmK03 |
| 1455 | 695095422348574720 | 2888 | 684 | Original tweet | https://t.co/2L8pI0Z2Ib |
| 1456 | 695074328191332352 | 3116 | 1239 | Original tweet | https://t.co/dH3GzcjCtQ |
| 1457 | 695064344191721472 | 1771 | 685 | Original tweet | https://t.co/uaJmNgXR2P |
| 1458 | 695051054296211456 | 2918 | 885 | Original tweet | https://t.co/vityMwPKKi |
| 1459 | 694925794720792577 | 2965 | 1043 | Original tweet | https://t.co/Vn6w5w8TO2 |
| 1460 | 694905863685980160 | 3046 | 1053 | Original tweet | https://t.co/CJJpjTMzPQ |
| 1461 | 694669722378485760 | 26068 | 13517 | Original tweet | https://t.co/9mb0P2rjk2 |
| 1462 | 694356675654983680 | 1653 | 328 | Original tweet | https://t.co/SQsEBWxPyG |
| 1463 | 694352839993344000 | 2244 | 700 | Original tweet | https://t.co/6NgsQJuSBJ |
| 1464 | 694342028726001664 | 1727 | 557 | Original tweet | https://t.co/oCImpQuoRb |
| 1465 | 694329668942569472 | 2203 | 569 | Original tweet | https://t.co/oToIkYnEGn |
| 1466 | 694206574471057408 | 4582 | 2297 | Original tweet | https://t.co/Sd4qAdSRqI |
| 1467 | 694183373896572928 | 3236 | 1040 | Original tweet | https://t.co/pVebzwRioD |
| 1468 | 694001791655137281 | 3705 | 1176 | Original tweet | https://t.co/YoII7tWXMT |
| 1469 | 693993230313091072 | 2044 | 457 | Original tweet | https://t.co/gzRghPC61H |
| 1470 | 693942351086120961 | 1896 | 413 | Original tweet | https://t.co/LCA6Fr3X2M |
| 1471 | 693647888581312512 | 2961 | 673 | Original tweet | https://t.co/LSTAwTdTaw |
| 1472 | 693644216740769793 | 1473 | 150 | Original tweet | f |
| 1473 | 693642232151285760 | 2790 | 472 | Original tweet | https://t.co/6BS9XEip9a |
| 1474 | 693629975228977152 | 2685 | 894 | Original tweet | https://t.co/Tn9Mp0oPoJ |
| 1475 | 693622659251335168 | 1691 | 422 | Original tweet | https://t.co/a1IrjaID3X |
| 1476 | 693590843962331137 | 5565 | 2233 | Original tweet | https://t.co/fShNNhBWYx |
| 1477 | 693582294167244802 | 1802 | 292 | Original tweet | I |
| 1478 | 693486665285931008 | 1941 | 698 | Original tweet | https://t.co/S6cQsIoX27 |
| 1479 | 693280720173801472 | 3669 | 1403 | Original tweet | https://t.co/UzbhwXcLne |
| 1480 | 693267061318012928 | 2622 | 925 | Original tweet | https://t.co/waN6EW0wfM |
| 1481 | 693262851218264065 | 2459 | 568 | Original tweet | https://t.co/DYUsHtL2aR |
| 1482 | 693231807727280129 | 3133 | 841 | Original tweet | https://t.co/bpZsGMqVVP |
| 1483 | 693155686491000832 | 8668 | 3622 | Original tweet | https://t.co/At8Kxc5H9U |
| 1484 | 693109034023534592 | 1889 | 695 | Original tweet | https://t.co/NY3cPAZAIM |
| 1485 | 693095443459342336 | 2056 | 523 | Original tweet | https://t.co/OhodPIDOpW |
| 1486 | 692919143163629568 | 2926 | 838 | Original tweet | https://t.co/TMpDHHGspy |
| 1487 | 692905862751522816 | 2683 | 998 | Original tweet | https://t.co/EiF659Bgjn |
| 1488 | 692901601640583168 | 1971 | 682 | Original tweet | https://t.co/N0OADmCnVV |
| 1489 | 692894228850999298 | 2511 | 910 | Original tweet | https://t.co/mCqgtqLDCW |
| 1490 | 692828166163931137 | 3148 | 998 | Original tweet | https://t.co/X6X9wM7NuS |
| 1491 | 692752401762250755 | 7496 | 4124 | Original tweet | https://t.co/kYWcXbluUu |
| 1492 | 692568918515392513 | 4739 | 1737 | Original tweet | https://t.co/CFMjsn3P6B |
| 1493 | 692535307825213440 | 3504 | 1529 | Original tweet | https://t.co/Dt360V2MYI |
| 1494 | 692530551048294401 | 2021 | 474 | Original tweet | https://t.co/Iv3flDTpXu |
| 1495 | 692423280028966913 | 1618 | 265 | Original tweet | 0 |
| 1496 | 692417313023332352 | 10275 | 3917 | Original tweet | https://t.co/VGaIMktX10 |
| 1497 | 692187005137076224 | 2768 | 929 | Original tweet | https://t.co/krvbacIX0N |
| 1498 | 692158366030913536 | 2369 | 896 | Original tweet | https://t.co/1NgMb9BTWB |
| 1499 | 692142790915014657 | 1798 | 438 | Original tweet | https://t.co/tDkJAnQsbQ |
| 1500 | 692041934689402880 | 3724 | 1424 | Original tweet | https://t.co/sRUpRpGZ3y |
| 1501 | 692017291282812928 | 3153 | 1081 | Original tweet | https://t.co/BE4ahQ0IO2 |
| 1502 | 691820333922455552 | 4329 | 1860 | Original tweet | https://t.co/fn1oUlS69Z |
| 1503 | 691793053716221953 | 8910 | 4732 | Original tweet | https://t.co/qnMJHBxPuo |
| 1504 | 691756958957883396 | 3179 | 1161 | Original tweet | https://t.co/frGWV7IP6J |
| 1505 | 691675652215414786 | 2116 | 577 | Original tweet | https://t.co/KMdwNgONkV |
| 1506 | 691483041324204033 | 2608 | 656 | Original tweet | https://t.co/aenk0KpoWM |
| 1507 | 691459709405118465 | 4449 | 1294 | Original tweet | https://t.co/LZEi0DpRsH |
| 1508 | 691444869282295808 | 2890 | 955 | Original tweet | https://t.co/YBENhr24FV |
| 1509 | 691416866452082688 | 21253 | 8689 | Original tweet | https://t.co/fR1P3g5I6k |
| 1510 | 691321916024623104 | 2828 | 747 | Original tweet | https://t.co/g4fiS8A9Ab |
| 1511 | 691096613310316544 | 3253 | 1019 | Original tweet | https://t.co/fUacc13OrW |
| 1512 | 691090071332753408 | 1867 | 385 | Original tweet | https://t.co/MM7tb4HpEY |
| 1513 | 690989312272396288 | 6513 | 3282 | Original tweet | https://t.co/pmarb2dG0e |
| 1514 | 690959652130045952 | 3902 | 1421 | Original tweet | https://t.co/DgXYBDMM3E |
| 1515 | 690938899477221376 | 4536 | 2245 | Original tweet | https://t.co/HSL3mnP5NX |
| 1516 | 690932576555528194 | 3602 | 1143 | Original tweet | https://t.co/FQZGSQIQLS |
| 1517 | 690735892932222976 | 4134 | 1442 | Original tweet | https://t.co/YrhkrTsoTt |
| 1518 | 690728923253055490 | 2384 | 597 | Original tweet | https://t.co/qOD4G19A2u |
| 1519 | 690690673629138944 | 2547 | 898 | Original tweet | https://t.co/yS7T4gxKod |
| 1520 | 690649993829576704 | 1435 | 325 | Original tweet | https://t.co/CneG2ZbxHP |
| 1521 | 690607260360429569 | 313 | 19 | Original tweet | t |
| 1522 | 690597161306841088 | 2163 | 681 | Original tweet | https://t.co/Nwi3SYe8KA |
| 1523 | 690400367696297985 | 2041 | 509 | Original tweet | https://t.co/PlEXTofdpf |
| 1524 | 690374419777196032 | 3560 | 972 | Original tweet | https://t.co/VpfFCKE28C |
| 1525 | 690360449368465409 | 2925 | 1006 | Original tweet | https://t.co/B9ZXXKJYNx |
| 1526 | 690348396616552449 | 1644 | 573 | Original tweet | https://t.co/JjxriLqZOL |
| 1527 | 690248561355657216 | 1845 | 477 | Original tweet | https://t.co/IF5kKaO945 |
| 1528 | 690021994562220032 | 3056 | 1180 | Original tweet | https://t.co/TmlwQWnmRC |
| 1529 | 690015576308211712 | 2740 | 836 | Original tweet | https://t.co/03XlvS8izg |
| 1530 | 690005060500217858 | 4004 | 1907 | Original tweet | https://t.co/V8HcVIh4jt |
| 1531 | 689999384604450816 | 1561 | 424 | Original tweet | https://t.co/fgMaP2zDMt |
| 1532 | 689993469801164801 | 1618 | 518 | Original tweet | https://t.co/K4s9IJh2jm |
| 1533 | 689977555533848577 | 1490 | 502 | Original tweet | https://t.co/MXedEzSHIf |
| 1534 | 689905486972461056 | 2651 | 787 | Original tweet | https://t.co/IE4ZblyZRY |
| 1535 | 689877686181715968 | 3323 | 1344 | Original tweet | https://t.co/5iH08ltkoe |
| 1536 | 689835978131935233 | 2369 | 850 | Original tweet | https://t.co/MuqHPvtL8c |
| 1537 | 689661964914655233 | 3501 | 1052 | Original tweet | https://t.co/VcxZQPNZaV |
| 1538 | 689659372465688576 | 11394 | 4412 | Original tweet | https://t.co/XtDkrsdEfF |
| 1539 | 689623661272240129 | 2467 | 748 | Original tweet | https://t.co/QnvSjjyh7n |
| 1540 | 689599056876867584 | 12795 | 6265 | Original tweet | https://t.co/TRAri5iHzd |
| 1541 | 689557536375177216 | 2257 | 519 | Original tweet | https://t.co/WFh2FEbYzj |
| 1542 | 689517482558820352 | 3735 | 1609 | Original tweet | https://t.co/Wk3XCnmDvm |
| 1543 | 689289219123089408 | 2476 | 1056 | Original tweet | https://t.co/Rxrd4hPmp4 |
| 1544 | 689283819090870273 | 3624 | 1250 | Original tweet | https://t.co/V62rIva61J |
| 1545 | 689280876073582592 | 2197 | 819 | Original tweet | https://t.co/JR7hLnlgeS |
| 1546 | 689275259254616065 | 1273 | 285 | Original tweet | https://t.co/K55XrIoePl |
| 1547 | 689255633275777024 | 2805 | 1212 | Original tweet | https://t.co/gOH51Y8Yh1 |
| 1548 | 689154315265683456 | 3348 | 1128 | Original tweet | https://t.co/o47yitCn9N |
| 1549 | 689143371370250240 | 2232 | 579 | Original tweet | https://t.co/40w7TI5Axv |
| 1550 | 688916208532455424 | 3003 | 983 | Original tweet | https://t.co/A8X8fwS78x |
| 1551 | 688908934925697024 | 2310 | 874 | Original tweet | https://t.co/WpSFZm7RPH |
| 1552 | 688898160958271489 | 2307 | 890 | Original tweet | https://t.co/MfEaMUFYTx |
| 1553 | 688894073864884227 | 2462 | 792 | Original tweet | https://t.co/ROPZcAMQKI |
| 1554 | 688828561667567616 | 1508 | 420 | Original tweet | https://t.co/dfCCK3tWfr |
| 1555 | 688804835492233216 | 1043 | 227 | Original tweet | https://t.co/PMeq6IedU7 |
| 1556 | 688789766343622656 | 2434 | 759 | Original tweet | https://t.co/2TWxg0rgyG |
| 1557 | 688547210804498433 | 2862 | 789 | Original tweet | https://t.co/7ycWCUrjmZ |
| 1558 | 688519176466644993 | 2520 | 825 | Original tweet | https://t.co/glmvQBRjv4 |
| 1559 | 688385280030670848 | 10180 | 5035 | Original tweet | https://t.co/vz2DukO0th |
| 1560 | 688211956440801280 | 2426 | 937 | Original tweet | https://t.co/o4Nfc8WoAO |
| 1561 | 688179443353796608 | 2328 | 669 | Original tweet | https://t.co/mFhvtX36om |
| 1562 | 688116655151435777 | 3093 | 888 | Original tweet | https://t.co/YdLytdZOqv |
| 1563 | 688064179421470721 | 1878 | 408 | Original tweet | https://t.co/GS76SfkraY |
| 1564 | 687841446767013888 | 6009 | 2872 | Original tweet | https://t.co/nZhhMRr5Hp |
| 1565 | 687826841265172480 | 2989 | 1292 | Original tweet | https://t.co/17RGvOZO9P |
| 1566 | 687818504314159109 | 2758 | 1080 | Original tweet | https://t.co/hK6xB042EP |
| 1567 | 687807801670897665 | 2625 | 801 | Original tweet | https://t.co/c98k1IoZKy |
| 1568 | 687732144991551489 | 1935 | 750 | Original tweet | https://t.co/kGRcRjRJRl |
| 1569 | 687704180304273409 | 2660 | 950 | Original tweet | https://t.co/UwOV1jqKRt |
| 1570 | 687664829264453632 | 2121 | 576 | Original tweet | https://t.co/IAt3jRZ5ez |
| 1571 | 687494652870668288 | 2104 | 654 | Original tweet | https://t.co/MHScqo5l8c |
| 1572 | 687480748861947905 | 1760 | 281 | Original tweet | https://t.co/X5w387K5jr |
| 1573 | 687476254459715584 | 2187 | 619 | Original tweet | https://t.co/1DzInODwrj |
| 1574 | 687460506001633280 | 2243 | 614 | Original tweet | https://t.co/jIcVW0xxmH |
| 1575 | 687399393394311168 | 2081 | 702 | Original tweet | https://t.co/nTAsyvbIiO |
| 1576 | 687317306314240000 | 22073 | 10411 | Original tweet | https://t.co/pRp1Npucbz |
| 1577 | 687312378585812992 | 4777 | 2146 | Original tweet | https://t.co/yzGR9xjE9Q |
| 1578 | 687127927494963200 | 6004 | 2591 | Original tweet | https://t.co/a34N7QwKbb |
| 1579 | 687124485711986689 | 2371 | 577 | Original tweet | https://t.co/03vR9dn7jy |
| 1580 | 687109925361856513 | 6370 | 2803 | Original tweet | https://t.co/LHcH1yhhIb |
| 1581 | 687102708889812993 | 2571 | 1124 | Original tweet | https://t.co/A88x73TwMN |
| 1582 | 687096057537363968 | 2449 | 695 | Original tweet | https://t.co/D7jYj6vdwC |
| 1583 | 686947101016735744 | 9433 | 3582 | Original tweet | https://t.co/lJs10ZJsgj |
| 1584 | 686760001961103360 | 3852 | 1551 | Original tweet | https://t.co/KFTrkSOuu3 |
| 1585 | 686749460672679938 | 3812 | 1666 | Original tweet | https://t.co/nSQrhwbk1V |
| 1586 | 686730991906516992 | 4543 | 1350 | Original tweet | https://t.co/Kc84eFNhYU |
| 1587 | 686683045143953408 | 3072 | 912 | Original tweet | https://t.co/pgD6h0yhgz |
| 1588 | 686618349602762752 | 4042 | 1544 | Original tweet | https://t.co/yJVTi1DjJc |
| 1589 | 686606069955735556 | 2071 | 607 | Original tweet | https://t.co/tB9xYjMyZd |
| 1590 | 686394059078897668 | 1928 | 769 | Original tweet | https://t.co/CufnbUT0pB |
| 1591 | 686386521809772549 | 3553 | 996 | Original tweet | https://t.co/J5aI7SjzDc |
| 1592 | 686377065986265092 | 2433 | 637 | Original tweet | https://t.co/oDkspjNWYX |
| 1593 | 686358356425093120 | 2398 | 776 | Original tweet | https://t.co/95JJevQOWW |
| 1594 | 686286779679375361 | 4392 | 1887 | Original tweet | https://t.co/xolcXA6gxe |
| 1595 | 686050296934563840 | 2420 | 836 | Original tweet | https://t.co/BUyX7isHRg |
| 1596 | 686035780142297088 | 1274 | 138 | Original tweet | g |
| 1597 | 686034024800862208 | 3424 | 1324 | Original tweet | https://t.co/oSvRDuMm1D |
| 1598 | 686007916130873345 | 2704 | 472 | Original tweet | https://t.co/heAGpKTpPW |
| 1599 | 686003207160610816 | 2009 | 735 | Original tweet | https://t.co/NOIiRWr5Jf |
| 1600 | 685973236358713344 | 2326 | 611 | Original tweet | https://t.co/xbUoULOIS8 |
| 1601 | 685943807276412928 | 1801 | 696 | Original tweet | https://t.co/wbAcvFoNtn |
| 1602 | 685906723014619143 | 8277 | 3303 | Original tweet | https://t.co/NnLjg6BgyF |
| 1603 | 685681090388975616 | 2069 | 140 | Original tweet | ️ |
| 1604 | 685667379192414208 | 2579 | 666 | Original tweet | https://t.co/u427woxFpJ |
| 1605 | 685663452032069632 | 3557 | 1656 | Original tweet | https://t.co/AcVWe39nmM |
| 1606 | 685641971164143616 | 3218 | 885 | Original tweet | https://t.co/jJS8qQeuNO |
| 1607 | 685547936038666240 | 35052 | 17465 | Original tweet | https://t.co/3m6bNGXWnM |
| 1608 | 685532292383666176 | 3336 | 1298 | Original tweet | https://t.co/GboDG8WhJG |
| 1609 | 685325112850124800 | 10471 | 4535 | Original tweet | https://t.co/VGPH0TfESw |
| 1610 | 685321586178670592 | 2910 | 735 | Original tweet | https://t.co/MbgG95mUdu |
| 1611 | 685315239903100929 | 3676 | 1234 | Original tweet | https://t.co/QIe7oxkSNo |
| 1612 | 685307451701334016 | 2262 | 496 | Original tweet | https://t.co/rwW7z1JAOF |
| 1613 | 685268753634967552 | 3419 | 1371 | Original tweet | https://t.co/vzCl35fKlZ |
| 1614 | 685198997565345792 | 2566 | 764 | Original tweet | https://t.co/530Yfbl5xo |
| 1615 | 685169283572338688 | 4489 | 1620 | Original tweet | https://t.co/UfGkB9Wrud |
| 1616 | 684969860808454144 | 2374 | 421 | Original tweet | u |
| 1617 | 684959798585110529 | 7004 | 3487 | Original tweet | https://t.co/85q7xlplsJ |
| 1618 | 684940049151070208 | 3523 | 1191 | Original tweet | https://t.co/zNeLxJeAoL |
| 1619 | 684926975086034944 | 3849 | 552 | Original tweet | https://t.co/PEXHuvSVD4 |
| 1620 | 684914660081053696 | 3848 | 1662 | Original tweet | https://t.co/AMDsllQs7a |
| 1621 | 684902183876321280 | 2053 | 605 | Original tweet | https://t.co/JVvIrUmTkR |
| 1622 | 684880619965411328 | 2305 | 936 | Original tweet | https://t.co/DnNweb5eTO |
| 1623 | 684830982659280897 | 38551 | 24514 | Original tweet | https://t.co/e3LPMAHj7p |
| 1624 | 684800227459624960 | 2979 | 1124 | Original tweet | https://t.co/J3Ld4fRbSy |
| 1625 | 684594889858887680 | 9843 | 4016 | Original tweet | https://t.co/uhQNehTpIu |
| 1626 | 684588130326986752 | 4489 | 1592 | Original tweet | https://t.co/2sHwD7HztL |
| 1627 | 684567543613382656 | 3312 | 1418 | Original tweet | https://t.co/b8XW69gSaU |
| 1628 | 684538444857667585 | 2915 | 1085 | Original tweet | https://t.co/IKoRK4yoxV |
| 1629 | 684481074559381504 | 4249 | 1320 | Original tweet | https://t.co/nBtDeZ4yAb |
| 1630 | 684460069371654144 | 2169 | 628 | Original tweet | https://t.co/bicyOV6lju |
| 1631 | 684241637099323392 | 8999 | 3727 | Original tweet | https://t.co/feiPiq7z94 |
| 1632 | 684225744407494656 | 1369 | 239 | Original tweet | https://t.co/kRK51Y5ac3 |
| 1633 | 684222868335505415 | 4225 | 1563 | Original tweet | https://t.co/1zfnTJLt55 |
| 1634 | 684200372118904832 | 2394 | 1177 | Original tweet | https://t.co/jkCb25OWfh |
| 1635 | 684195085588783105 | 2108 | 595 | Original tweet | https://t.co/cUxGtnBfc2 |
| 1636 | 684188786104872960 | 3831 | 1343 | Original tweet | https://t.co/e0gbl9VFpA |
| 1637 | 684177701129875456 | 2215 | 764 | Original tweet | https://t.co/myUUwqJIs7 |
| 1638 | 684147889187209216 | 3265 | 1703 | Original tweet | https://t.co/WYiFzuX7D4 |
| 1639 | 684122891630342144 | 2176 | 539 | Original tweet | https://t.co/k32mSlRx0j |
| 1640 | 684097758874210310 | 4515 | 1621 | Original tweet | https://t.co/Fz6iZWlk8C |
| 1641 | 683857920510050305 | 4163 | 1262 | Original tweet | https://t.co/LoKVvc1xAW |
| 1642 | 683852578183077888 | 2111 | 397 | Original tweet | https://t.co/Yei0HzS3JN |
| 1643 | 683849932751646720 | 2896 | 1116 | Original tweet | https://t.co/omln4LOy1x |
| 1644 | 683834909291606017 | 2880 | 1265 | Original tweet | https://t.co/O1E4AtHVxO |
| 1645 | 683828599284170753 | 3053 | 1195 | Original tweet | https://t.co/Eeh3yfdglS |
| 1646 | 683773439333797890 | 3684 | 1533 | Original tweet | https://t.co/qipZbshNsR |
| 1647 | 683742671509258241 | 7162 | 3781 | Original tweet | https://t.co/eoL1bCpWCg |
| 1648 | 683515932363329536 | 8058 | 3291 | Original tweet | https://t.co/XQ1tRUmO3z |
| 1649 | 683498322573824003 | 3469 | 1095 | Original tweet | https://t.co/ObWcOEekt0 |
| 1650 | 683481228088049664 | 2878 | 1118 | Original tweet | https://t.co/H7NZFumpKq |
| 1651 | 683462770029932544 | 2676 | 761 | Original tweet | https://t.co/qFD8217fUT |
| 1652 | 683449695444799489 | 4290 | 1837 | Original tweet | https://t.co/1Z7Q6svWpe |
| 1653 | 683391852557561860 | 8356 | 2702 | Original tweet | https://t.co/YHXrdUTHd6 |
| 1654 | 683357973142474752 | 3238 | 1059 | Original tweet | https://t.co/g4G5tvfTVd |
| 1655 | 683142553609318400 | 3162 | 1173 | Original tweet | https://t.co/hhIA3coiAJ |
| 1656 | 683111407806746624 | 3736 | 1034 | Original tweet | https://t.co/h3X0jK8MVM |
| 1657 | 683098815881154561 | 2361 | 736 | Original tweet | https://t.co/UOPdXmUz4H |
| 1658 | 683078886620553216 | 2176 | 634 | Original tweet | https://t.co/ny8mnXhGOW |
| 1659 | 683030066213818368 | 2370 | 832 | Original tweet | https://t.co/h3ScYuz77J |
| 1660 | 682962037429899265 | 26239 | 15043 | Original tweet | https://t.co/7EsP8LmSp5 |
| 1661 | 682808988178739200 | 1953 | 210 | Original tweet | e |
| 1662 | 682788441537560576 | 2706 | 1258 | Original tweet | https://t.co/ZSdEj59FGf |
| 1663 | 682750546109968385 | 1674 | 494 | Original tweet | https://t.co/85X1GHohFr |
| 1664 | 682697186228989953 | 1440 | 397 | Original tweet | https://t.co/Ny4iM6FDtz |
| 1665 | 682662431982772225 | 3326 | 1207 | Original tweet | https://t.co/WgQTIQ93BB |
| 1666 | 682638830361513985 | 2266 | 675 | Original tweet | https://t.co/viwWHZgX8j |
| 1667 | 682429480204398592 | 3769 | 1320 | Original tweet | https://t.co/5aFw7SWyxU |
| 1668 | 682406705142087680 | 8319 | 2019 | Original tweet | https://t.co/J9DXBFoAQe |
| 1669 | 682393905736888321 | 2441 | 773 | Original tweet | https://t.co/BA5AV5dx6Y |
| 1670 | 682389078323662849 | 1828 | 518 | Original tweet | https://t.co/vBeiQq6SaZ |
| 1671 | 682303737705140231 | 3389 | 1135 | Original tweet | https://t.co/Nm8Spw4HbD |
| 1672 | 682259524040966145 | 4578 | 1375 | Original tweet | https://t.co/i5TeG0KYcW |
| 1673 | 682242692827447297 | 3566 | 1341 | Original tweet | https://t.co/f8dVgDYDFf |
| 1674 | 682088079302213632 | 20108 | 11271 | Original tweet | https://t.co/4Kn9GEHXiE |
| 1675 | 682059653698686977 | 5442 | 1915 | Original tweet | https://t.co/IriJlVZ6m4 |
| 1676 | 682047327939461121 | 3525 | 1088 | Original tweet | https://t.co/fZc7MixeeT |
| 1677 | 682032003584274432 | 7223 | 2294 | Original tweet | https://t.co/gPmJHmtgak |
| 1678 | 682003177596559360 | 3464 | 1722 | Original tweet | https://t.co/Hy9La4xNX3 |
| 1679 | 681981167097122816 | 3043 | 1161 | Original tweet | https://t.co/VwdIk0OwVx |
| 1680 | 681891461017812993 | 2706 | 951 | Original tweet | https://t.co/9KThv6z8u5 |
| 1681 | 681694085539872773 | 14010 | 4581 | Original tweet | https://t.co/TONMhRoQh7 |
| 1682 | 681679526984871937 | 1923 | 499 | Original tweet | https://t.co/3uCcDEJLXs |
| 1683 | 681654059175129088 | 2903 | 1045 | Original tweet | https://t.co/oEXEKt3MHu |
| 1684 | 681610798867845120 | 2100 | 533 | Original tweet | https://t.co/C7M8mnzHIK |
| 1685 | 681579835668455424 | 3893 | 1489 | Original tweet | https://t.co/ojUBrDCHLT |
| 1686 | 681523177663676416 | 15749 | 6620 | Original tweet | https://t.co/GQn2IopLud |
| 1687 | 681340665377193984 | 1803 | 313 | Original tweet | e |
| 1688 | 681339448655802368 | 10202 | 4598 | Original tweet | https://t.co/V3SWuHACkh |
| 1689 | 681320187870711809 | 2918 | 863 | Original tweet | https://t.co/jTBPqKgkz7 |
| 1690 | 681302363064414209 | 4347 | 2072 | Original tweet | https://t.co/YqbU9xHV3p |
| 1691 | 681297372102656000 | 3490 | 1091 | Original tweet | https://t.co/Pp26dMQxap |
| 1692 | 681281657291280384 | 3520 | 1258 | Original tweet | https://t.co/KvVoBIgkje |
| 1693 | 681261549936340994 | 1597 | 308 | Original tweet | https://t.co/wL1iDvbcVk |
| 1694 | 681242418453299201 | 1645 | 624 | Original tweet | https://t.co/VGsziXImoy |
| 1695 | 681231109724700672 | 2629 | 540 | Original tweet | https://t.co/P16uhh1PbI |
| 1696 | 681193455364796417 | 4077 | 1691 | Original tweet | https://t.co/oBlgL9nxpx |
| 1697 | 680970795137544192 | 2665 | 749 | Original tweet | https://t.co/CXSJZ4Stk3 |
| 1698 | 680959110691590145 | 4986 | 2243 | Original tweet | https://t.co/u4FYdIRKnY |
| 1699 | 680940246314430465 | 3544 | 1225 | Original tweet | https://t.co/VQXdwJfkyS |
| 1700 | 680934982542561280 | 2285 | 497 | Original tweet | https://t.co/g2bTu4ayPl |
| 1701 | 680913438424612864 | 2609 | 705 | Original tweet | https://t.co/5NrpNDyFzN |
| 1702 | 680889648562991104 | 1945 | 418 | Original tweet | https://t.co/cH2H7mch2H |
| 1703 | 680836378243002368 | 3766 | 1513 | Original tweet | https://t.co/BF4BW8LUgb |
| 1704 | 680805554198020098 | 2370 | 751 | Original tweet | https://t.co/BYiXJDEzv7 |
| 1705 | 680801747103793152 | 2600 | 925 | Original tweet | https://t.co/31npKUAox0 |
| 1706 | 680798457301471234 | 3134 | 1182 | Original tweet | https://t.co/w6fRfQ3RXD |
| 1707 | 680609293079592961 | 2906 | 816 | Original tweet | https://t.co/WvJRg0XJit |
| 1708 | 680583894916304897 | 3939 | 1514 | Original tweet | https://t.co/YNWU7LeFgg |
| 1709 | 680497766108381184 | 4639 | 2162 | Original tweet | https://t.co/QGM5Fcuv7s |
| 1710 | 680494726643068929 | 1879 | 542 | Original tweet | https://t.co/eNm2S6p9BD |
| 1711 | 680473011644985345 | 2778 | 844 | Original tweet | https://t.co/OdUFuZIXiI |
| 1712 | 680440374763077632 | 1583 | 564 | Original tweet | https://t.co/UKqIAnR3He |
| 1713 | 680221482581123072 | 1598 | 329 | Original tweet | https://t.co/ZJUypFFwvg |
| 1714 | 680206703334408192 | 3115 | 1323 | Original tweet | https://t.co/vHnu1g9EJm |
| 1715 | 680191257256136705 | 2356 | 577 | Original tweet | https://t.co/KXg0f8GNQ9 |
| 1716 | 680176173301628928 | 4263 | 1760 | Original tweet | https://t.co/NhXo67K6yt |
| 1717 | 680161097740095489 | 2538 | 828 | Original tweet | https://t.co/72Dil0Aktw |
| 1718 | 680145970311643136 | 3955 | 1972 | Original tweet | https://t.co/N5pM6WBx7e |
| 1719 | 680130881361686529 | 2519 | 1078 | Original tweet | https://t.co/w0dcGXq7qK |
| 1720 | 680115823365742593 | 2972 | 1028 | Original tweet | https://t.co/Kt9vmw0Fap |
| 1721 | 680100725817409536 | 3891 | 1554 | Original tweet | https://t.co/lvMYbmKq8H |
| 1722 | 680085611152338944 | 13959 | 10034 | Original tweet | https://t.co/etzLo3sdZE |
| 1723 | 680070545539371008 | 2818 | 994 | Original tweet | https://t.co/Fh7geodBCU |
| 1724 | 680055455951884288 | 18278 | 8067 | Original tweet | https://t.co/MQfPK4zwuh |
| 1725 | 679877062409191424 | 2155 | 726 | Original tweet | https://t.co/SDcQYg0HSZ |
| 1726 | 679872969355714560 | 2365 | 749 | Original tweet | https://t.co/xZXUKVXJ7l |
| 1727 | 679862121895714818 | 2678 | 706 | Original tweet | https://t.co/eRZRI8OTj7 |
| 1728 | 679854723806179328 | 3143 | 1402 | Original tweet | https://t.co/RtxxACzZ8A |
| 1729 | 679844490799091713 | 2593 | 887 | Original tweet | https://t.co/MJqygWqt8X |
| 1730 | 679828447187857408 | 39726 | 15839 | Original tweet | https://t.co/hyAC5Hq9GC |
| 1731 | 679777920601223168 | 3390 | 1281 | Original tweet | https://t.co/PA0czwucsb |
| 1732 | 679736210798047232 | 2311 | 918 | Original tweet | https://t.co/iazoiNUviP |
| 1733 | 679729593985699840 | 2367 | 937 | Original tweet | https://t.co/DbUTDI3u1R |
| 1734 | 679722016581222400 | 1817 | 539 | Original tweet | https://t.co/NL5QJwdEpF |
| 1735 | 679530280114372609 | 5208 | 2347 | Original tweet | https://t.co/yavgkHYPOC |
| 1736 | 679527802031484928 | 2892 | 823 | Original tweet | https://t.co/DA5aqnSGfB |
| 1737 | 679511351870550016 | 3711 | 1461 | Original tweet | https://t.co/bwuV6FlRxr |
| 1738 | 679503373272485890 | 3484 | 1673 | Original tweet | https://t.co/jjW7zTxY9Z |
| 1739 | 679475951516934144 | 2304 | 728 | Original tweet | https://t.co/VITeF0Kl9L |
| 1740 | 679462823135686656 | 34856 | 21324 | Original tweet | https://t.co/M6vqkt2GKV |
| 1741 | 679405845277462528 | 2594 | 1364 | Original tweet | https://t.co/L8wt2IpwxO |
| 1742 | 679158373988876288 | 23568 | 9193 | Original tweet | https://t.co/NLOHmlENag |
| 1743 | 679148763231985668 | 3028 | 1163 | Original tweet | https://t.co/eWjWgbOCYL |
| 1744 | 679132435750195208 | 3253 | 1314 | Original tweet | https://t.co/qoIvjKMY58 |
| 1745 | 679111216690831360 | 6514 | 2893 | Original tweet | https://t.co/4R0Cc0sLVE |
| 1746 | 679062614270468097 | 18712 | 9299 | Original tweet | https://t.co/Xl37lQEWd0 |
| 1747 | 679047485189439488 | 2460 | 781 | Original tweet | https://t.co/kTpr9PTMg1 |
| 1748 | 679001094530465792 | 3075 | 1378 | Original tweet | https://t.co/Ajquq6oGSg |
| 1749 | 678991772295516161 | 2537 | 1333 | Original tweet | https://t.co/GJT6SILPGU |
| 1750 | 678969228704284672 | 1796 | 528 | Original tweet | https://t.co/etpBNXwN7f |
| 1751 | 678800283649069056 | 2810 | 1018 | Original tweet | https://t.co/DpCSVsl6vu |
| 1752 | 678798276842360832 | 3804 | 1350 | Original tweet | https://t.co/blaY85FIxR |
| 1753 | 678774928607469569 | 3037 | 1043 | Original tweet | https://t.co/Sp739Ou2qx |
| 1754 | 678767140346941444 | 3864 | 1553 | Original tweet | https://t.co/G6TQVgTcZz |
| 1755 | 678764513869611008 | 1788 | 544 | Original tweet | https://t.co/m6XoclB0qv |
| 1756 | 678755239630127104 | 7802 | 3741 | Original tweet | https://t.co/NqcOwG8pxW |
| 1757 | 678740035362037760 | 4099 | 1926 | Original tweet | https://t.co/p2T5kGebxe |
| 1758 | 678708137298427904 | 6082 | 2753 | Original tweet | https://t.co/sZy9Co74Bw |
| 1759 | 678675843183484930 | 3155 | 1680 | Original tweet | https://t.co/a8SqCaSo2r |
| 1760 | 678643457146150913 | 2250 | 489 | Original tweet | https://t.co/QBGwYrT7rv |
| 1761 | 678446151570427904 | 4358 | 1785 | Original tweet | https://t.co/AJWJHov5gx |
| 1762 | 678424312106393600 | 5916 | 2880 | Original tweet | https://t.co/rtMtjSl9pz |
| 1763 | 678410210315247616 | 4640 | 2072 | Original tweet | https://t.co/dIy88HwrX8 |
| 1764 | 678399652199309312 | 61794 | 30742 | Original tweet | https://t.co/VRTbo3aAcm |
| 1765 | 678396796259975168 | 1731 | 478 | Original tweet | https://t.co/LmThv0GWen |
| 1766 | 678389028614488064 | 2044 | 473 | Original tweet | https://t.co/auOoKuoveM |
| 1767 | 678380236862578688 | 2655 | 1020 | Original tweet | https://t.co/a0Zx5LDFZa |
| 1768 | 678341075375947776 | 1896 | 612 | Original tweet | https://t.co/cSp6w5GWgm |
| 1769 | 678334497360859136 | 1427 | 304 | Original tweet | https://t.co/GO76MdGBs0 |
| 1770 | 678278586130948096 | 12531 | 6857 | Original tweet | https://t.co/JK8MByRzgj |
| 1771 | 678255464182861824 | 1726 | 418 | Original tweet | https://t.co/nZhmRwZzWv |
| 1772 | 678023323247357953 | 2095 | 439 | Original tweet | 0 |
| 1773 | 678021115718029313 | 15018 | 7148 | Original tweet | https://t.co/cbLroGCbmh |
| 1774 | 677961670166224897 | 3701 | 1879 | Original tweet | https://t.co/4JS92YAxTi |
| 1775 | 677918531514703872 | 1476 | 463 | Original tweet | https://t.co/lWL2IMJqLR |
| 1776 | 677895101218201600 | 5275 | 2384 | Original tweet | https://t.co/EJImi1udYb |
| 1777 | 677716515794329600 | 3323 | 1104 | Original tweet | https://t.co/ZanVtAtvIq |
| 1778 | 677700003327029250 | 3689 | 1622 | Original tweet | https://t.co/zoDdPyPFsa |
| 1779 | 677698403548192770 | 1332 | 363 | Original tweet | https://t.co/fm7HxOsuPK |
| 1780 | 677687604918272002 | 2681 | 950 | Original tweet | https://t.co/gzkuVGRgAD |
| 1781 | 677673981332312066 | 3603 | 1677 | Original tweet | https://t.co/GFVIHIod0Z |
| 1782 | 677662372920729601 | 2134 | 1101 | Original tweet | https://t.co/pvjdRn00XH |
| 1783 | 677644091929329666 | 2040 | 886 | Original tweet | https://t.co/Ozo9KHTRND |
| 1784 | 677573743309385728 | 2322 | 819 | Original tweet | https://t.co/Htu8plSqEu |
| 1785 | 677565715327688705 | 1409 | 513 | Original tweet | https://t.co/EX9oR55VMe |
| 1786 | 677557565589463040 | 2665 | 1322 | Original tweet | https://t.co/96IBkOYB7j |
| 1787 | 677547928504967168 | 7568 | 4076 | Original tweet | https://t.co/AGag0hFHpe |
| 1788 | 677530072887205888 | 1161 | 250 | Original tweet | https://t.co/DKe9DBnnHE |
| 1789 | 677335745548390400 | 3328 | 2017 | Original tweet | https://t.co/vSLtYBWHcQ |
| 1790 | 677334615166730240 | 1477 | 328 | Original tweet | https://t.co/KmMv3Y2zI8 |
| 1791 | 677331501395156992 | 1189 | 265 | Original tweet | https://t.co/FS7eJQM2F4 |
| 1792 | 677328882937298944 | 3938 | 1693 | Original tweet | https://t.co/KgcsGNb61s |
| 1793 | 677314812125323265 | 1799 | 611 | Original tweet | https://t.co/fgORpmTN9C |
| 1794 | 677301033169788928 | 1362 | 471 | Original tweet | https://t.co/IoLRvF0Kak |
| 1795 | 677269281705472000 | 2164 | 790 | Original tweet | https://t.co/ep8ATEJwRb |
| 1796 | 677228873407442944 | 3837 | 1840 | Original tweet | https://t.co/hGkMCjZzn4 |
| 1797 | 677187300187611136 | 2981 | 1033 | Original tweet | https://t.co/gzI0m6wXRo |
| 1798 | 676975532580409345 | 3015 | 1203 | Original tweet | https://t.co/j1zczS0lI5 |
| 1799 | 676957860086095872 | 2395 | 907 | Original tweet | https://t.co/ngTNXYQF0L |
| 1800 | 676949632774234114 | 1413 | 448 | Original tweet | https://t.co/HqM3YhCaaa |
| 1801 | 676948236477857792 | 2354 | 980 | Original tweet | https://t.co/Lo4ALwjVh4 |
| 1802 | 676946864479084545 | 1844 | 426 | Original tweet | https://t.co/2mXALbgBTV |
| 1803 | 676942428000112642 | 2261 | 855 | Original tweet | https://t.co/PWMqAoEx2a |
| 1804 | 676936541936185344 | 13809 | 5515 | Original tweet | https://t.co/mqvaxleHRz |
| 1805 | 676916996760600576 | 3231 | 2002 | Original tweet | https://t.co/uPXBXS1XNb |
| 1806 | 676897532954456065 | 2426 | 817 | Original tweet | https://t.co/Avq4awulqk |
| 1807 | 676864501615042560 | 2294 | 808 | Original tweet | https://t.co/NJj2uP0atK |
| 1808 | 676821958043033607 | 25124 | 17605 | Original tweet | https://t.co/mvQaETHVSb |
| 1809 | 676819651066732545 | 1957 | 741 | Original tweet | https://t.co/1HrFdo7M0C |
| 1810 | 676811746707918848 | 1536 | 469 | Original tweet | https://t.co/aqBHjjh5VD |
| 1811 | 676776431406465024 | 5405 | 2249 | Original tweet | https://t.co/4rMZi5Ca1k |
| 1812 | 676617503762681856 | 3149 | 1108 | Original tweet | https://t.co/mpQl2rJjDh |
| 1813 | 676613908052996102 | 1183 | 219 | Original tweet | https://t.co/vQ2Lw1BLBF |
| 1814 | 676606785097199616 | 2039 | 490 | Original tweet | https://t.co/N5QL4ySBEx |
| 1815 | 676603393314578432 | 1280 | 440 | Original tweet | https://t.co/g1tLGkyaxr |
| 1816 | 676593408224403456 | 4954 | 2410 | Original tweet | https://t.co/APvLqbEhkF |
| 1817 | 676590572941893632 | 1001 | 142 | Original tweet | u |
| 1818 | 676588346097852417 | 2533 | 896 | Original tweet | https://t.co/Nrhvc5tLFT |
| 1819 | 676582956622721024 | 1310 | 312 | Original tweet | https://t.co/vZYtynZZlH |
| 1820 | 676575501977128964 | 2807 | 1254 | Original tweet | https://t.co/NsGyECJuq7 |
| 1821 | 676533798876651520 | 2025 | 621 | Original tweet | https://t.co/bfw13CnuuZ |
| 1822 | 676496375194980353 | 1641 | 602 | Original tweet | https://t.co/eoBCjSFajX |
| 1823 | 676470639084101634 | 12616 | 5224 | Original tweet | https://t.co/tAmQYvzrau |
| 1824 | 676440007570247681 | 1863 | 748 | Original tweet | https://t.co/dB0H9hdZai |
| 1825 | 676430933382295552 | 1526 | 385 | Original tweet | https://t.co/3bim9U5Idr |
| 1826 | 676263575653122048 | 2243 | 609 | Original tweet | https://t.co/fTgbq1UBR9 |
| 1827 | 676237365392908289 | 1335 | 331 | Original tweet | https://t.co/dOLQddhXLZ |
| 1828 | 676219687039057920 | 67100 | 31989 | Original tweet | https://t.co/uQt37xlYMJ |
| 1829 | 676215927814406144 | 1881 | 661 | Original tweet | https://t.co/tg8h9lzCHv |
| 1830 | 676191832485810177 | 2478 | 1145 | Original tweet | https://t.co/gwryaJO4tC |
| 1831 | 676146341966438401 | 2077 | 744 | Original tweet | https://t.co/lmQRrNxaQu |
| 1832 | 676121918416756736 | 2335 | 1297 | Original tweet | https://t.co/ICNIjSkrXs |
| 1833 | 676101918813499392 | 3042 | 1284 | Original tweet | https://t.co/B3xxSLjQSH |
| 1834 | 676098748976615425 | 3279 | 1623 | Original tweet | https://t.co/REyE5YKVBb |
| 1835 | 676089483918516224 | 1431 | 483 | Original tweet | https://t.co/Cuz0Osnekp |
| 1836 | 675898130735476737 | 1774 | 653 | Original tweet | https://t.co/G0pQiFGM7O |
| 1837 | 675891555769696257 | 2297 | 976 | Original tweet | https://t.co/kiW6Knb7Gp |
| 1838 | 675888385639251968 | 2581 | 1067 | Original tweet | https://t.co/06oZdehGEa |
| 1839 | 675878199931371520 | 4531 | 1570 | Original tweet | https://t.co/sfsVCGIipI |
| 1840 | 675870721063669760 | 1783 | 632 | Original tweet | https://t.co/QG708dDNH6 |
| 1841 | 675853064436391936 | 2927 | 1460 | Original tweet | https://t.co/y93p6FLvVw |
| 1842 | 675849018447167488 | 1027 | 172 | Original tweet | u |
| 1843 | 675845657354215424 | 2477 | 1000 | Original tweet | https://t.co/40dj4eTsXG |
| 1844 | 675822767435051008 | 1652 | 591 | Original tweet | https://t.co/GK2HJtkdQk |
| 1845 | 675820929667219457 | 1140 | 260 | Original tweet | https://t.co/lyXX3v5j4s |
| 1846 | 675798442703122432 | 11101 | 3787 | Original tweet | https://t.co/whQKMygnK6 |
| 1847 | 675781562965868544 | 1750 | 537 | Original tweet | https://t.co/DVAqAnb624 |
| 1848 | 675740360753160193 | 1257 | 388 | Original tweet | https://t.co/AUJi8ujxw9 |
| 1849 | 675710890956750848 | 2046 | 928 | Original tweet | https://t.co/JWi6YrpiO1 |
| 1850 | 675707330206547968 | 2154 | 771 | Original tweet | https://t.co/ALJvbtcwf0 |
| 1851 | 675706639471788032 | 693 | 106 | Original tweet | https://t.co/7E0AiJXPmI |
| 1852 | 675534494439489536 | 1953 | 470 | Original tweet | https://t.co/H7kpabTfLj |
| 1853 | 675531475945709568 | 1276 | 428 | Original tweet | https://t.co/c9jmg3Xtzn |
| 1854 | 675522403582218240 | 1122 | 316 | Original tweet | https://t.co/rO2zxf0OQ0 |
| 1855 | 675517828909424640 | 1414 | 507 | Original tweet | https://t.co/XDiQw4Akiw |
| 1856 | 675501075957489664 | 18482 | 6485 | Original tweet | https://t.co/WId5lxNdPH |
| 1857 | 675497103322386432 | 3397 | 1443 | Original tweet | https://t.co/h3AWz4AzuC |
| 1858 | 675489971617296384 | 1406 | 672 | Original tweet | https://t.co/MnTrKaQ8Wn |
| 1859 | 675483430902214656 | 1985 | 1081 | Original tweet | https://t.co/C3tlKVq7eO |
| 1860 | 675432746517426176 | 1623 | 627 | Original tweet | https://t.co/wNkqAED6lG |
| 1861 | 675372240448454658 | 1838 | 563 | Original tweet | https://t.co/IyAXinfyju |
| 1862 | 675362609739206656 | 1136 | 262 | Original tweet | https://t.co/cZlkvgRPdn |
| 1863 | 675354435921575936 | 35178 | 18963 | Original tweet | https://t.co/Bb3xnpsWBC |
| 1864 | 675349384339542016 | 4237 | 2532 | Original tweet | https://t.co/ZQZf2U4xCP |
| 1865 | 675334060156301312 | 3007 | 1436 | Original tweet | https://t.co/2d68FmWGGs |
| 1866 | 675166823650848770 | 3920 | 1795 | Original tweet | https://t.co/bijCeHeX4C |
| 1867 | 675153376133427200 | 6072 | 2734 | Original tweet | https://t.co/RDXCfk8hK0 |
| 1868 | 675149409102012420 | 4037 | 1878 | Original tweet | https://t.co/p6O8X93bTQ |
| 1869 | 675147105808306176 | 1026 | 273 | Original tweet | https://t.co/f50mbB4UWS |
| 1870 | 675146535592706048 | 1300 | 349 | Original tweet | https://t.co/Uz52oYnHzF |
| 1871 | 675145476954566656 | 2305 | 1011 | Original tweet | https://t.co/YDgstgIDGs |
| 1872 | 675135153782571009 | 1398 | 542 | Original tweet | https://t.co/zf7Sxxjfp3 |
| 1873 | 675113801096802304 | 2120 | 877 | Original tweet | https://t.co/2H5SKmk0k7 |
| 1874 | 675111688094527488 | 1042 | 283 | Original tweet | https://t.co/lFU9W31Fg9 |
| 1875 | 675109292475830276 | 3006 | 1259 | Original tweet | https://t.co/WjcELNEqN2 |
| 1876 | 675047298674663426 | 1141 | 366 | Original tweet | https://t.co/diboDRUuEI |
| 1877 | 675015141583413248 | 2918 | 1335 | Original tweet | https://t.co/JAncIdNp8G |
| 1878 | 675006312288268288 | 1057 | 252 | Original tweet | https://t.co/QMmAqA9VqO |
| 1879 | 675003128568291329 | 1672 | 517 | Original tweet | https://t.co/pCGDgLkLo6 |
| 1880 | 674999807681908736 | 2433 | 1232 | Original tweet | https://t.co/i9CDd1oEu8 |
| 1881 | 674805413498527744 | 934 | 391 | Original tweet | https://t.co/vqFkgYPCW8 |
| 1882 | 674800520222154752 | 3240 | 949 | Original tweet | https://t.co/cMI2AcLm4B |
| 1883 | 674793399141146624 | 2697 | 1225 | Original tweet | https://t.co/HwroPYv8pY |
| 1884 | 674790488185167872 | 1180 | 278 | Original tweet | https://t.co/L1puJISV1a |
| 1885 | 674788554665512960 | 871 | 230 | Original tweet | https://t.co/P3ElQ2wsjb |
| 1886 | 674781762103414784 | 2169 | 1335 | Original tweet | https://t.co/ot8yMUGodj |
| 1887 | 674774481756377088 | 1213 | 532 | Original tweet | https://t.co/gxIFgg8ktm |
| 1888 | 674767892831932416 | 1981 | 883 | Original tweet | https://t.co/Bob33W4sfD |
| 1889 | 674764817387900928 | 852 | 263 | Original tweet | https://t.co/RBiQ8hPqwr |
| 1890 | 674754018082705410 | 1456 | 488 | Original tweet | https://t.co/9YmNcxA2Cc |
| 1891 | 674752233200820224 | 1580 | 516 | Original tweet | https://t.co/rLf7asnHxO |
| 1892 | 674743008475090944 | 1514 | 607 | Original tweet | https://t.co/VagYftZccT |
| 1893 | 674742531037511680 | 527 | 55 | Original tweet | u |
| 1894 | 674739953134403584 | 1194 | 437 | Original tweet | https://t.co/URNs5zFskc |
| 1895 | 674737130913071104 | 693 | 103 | Original tweet | https://t.co/KNfLnYPmYh |
| 1896 | 674690135443775488 | 1237 | 510 | Original tweet | https://t.co/Unz1uNrOzo |
| 1897 | 674670581682434048 | 1751 | 729 | Original tweet | https://t.co/NRNExUy9Hm |
| 1898 | 674664755118911488 | 994 | 276 | Original tweet | https://t.co/S8wCLemrNb |
| 1899 | 674646392044941312 | 1533 | 557 | Original tweet | https://t.co/YPfw7oahbD |
| 1900 | 674644256330530816 | 1111 | 311 | Original tweet | https://t.co/m6aC8d1Kzp |
| 1901 | 674638615994089473 | 1806 | 650 | Original tweet | https://t.co/F33n1hy3LL |
| 1902 | 674632714662858753 | 1617 | 637 | Original tweet | https://t.co/EJzzNHE8bE |
| 1903 | 674606911342424069 | 1013 | 115 | Original tweet | s |
| 1904 | 674468880899788800 | 6676 | 2275 | Original tweet | https://t.co/6d9WziPXmx |
| 1905 | 674447403907457024 | 1137 | 393 | Original tweet | https://t.co/AyJ7Ohk71f |
| 1906 | 674436901579923456 | 1198 | 426 | Original tweet | https://t.co/CLEOjxhTEx |
| 1907 | 674422304705744896 | 1536 | 592 | Original tweet | https://t.co/BxTJAFSIgk |
| 1908 | 674416750885273600 | 731 | 157 | Original tweet | https://t.co/7qjXy1uUYY |
| 1909 | 674410619106390016 | 1289 | 515 | Original tweet | https://t.co/CZ0YaB40Hn |
| 1910 | 674394782723014656 | 1607 | 635 | Original tweet | https://t.co/cAlB4XCcsi |
| 1911 | 674372068062928900 | 931 | 346 | Original tweet | https://t.co/G4m0TFY9uc |
| 1912 | 674330906434379776 | 602 | 83 | Original tweet | 7 |
| 1913 | 674318007229923329 | 1516 | 570 | Original tweet | https://t.co/7mf8XXPAZv |
| 1914 | 674307341513269249 | 12129 | 7641 | Original tweet | https://t.co/SroTpI6psB |
| 1915 | 674291837063053312 | 15817 | 6533 | Original tweet | https://t.co/2S6oye3XqK |
| 1916 | 674271431610523648 | 1682 | 800 | Original tweet | https://t.co/3aXX6wH6it |
| 1917 | 674269164442398721 | 961 | 255 | Original tweet | https://t.co/vYe9RlVz2N |
| 1918 | 674265582246694913 | 1766 | 936 | Original tweet | https://t.co/Pu9RhfHDEQ |
| 1919 | 674262580978937856 | 1391 | 498 | Original tweet | https://t.co/gJS1qU0jP7 |
| 1920 | 674255168825880576 | 1581 | 619 | Original tweet | https://t.co/r6LZN1o1Gx |
| 1921 | 674082852460433408 | 804 | 186 | Original tweet | https://t.co/Bko5kFJYUU |
| 1922 | 674075285688614912 | 1047 | 316 | Original tweet | https://t.co/7jOPktauh4 |
| 1923 | 674063288070742018 | 6769 | 2450 | Original tweet | https://t.co/1ZbfqAVDg6 |
| 1924 | 674053186244734976 | 3576 | 1441 | Original tweet | https://t.co/gQAMg5ypW5 |
| 1925 | 674051556661161984 | 1564 | 530 | Original tweet | https://t.co/YE2XDHy4Yk |
| 1926 | 674045139690631169 | 1520 | 710 | Original tweet | https://t.co/t5ih0VrK02 |
| 1927 | 674042553264685056 | 772 | 142 | Original tweet | https://t.co/sAI6gCGZYX |
| 1928 | 674038233588723717 | 1176 | 456 | Original tweet | https://t.co/nX8FiGRHvk |
| 1929 | 674036086168010753 | 906 | 240 | Original tweet | https://t.co/jcNdw43BIP |
| 1930 | 674024893172875264 | 1914 | 1360 | Original tweet | https://t.co/qzYXbyv0SJ |
| 1931 | 674019345211760640 | 1208 | 340 | Original tweet | https://t.co/fqiEsTduEs |
| 1932 | 674014384960745472 | 1676 | 714 | Original tweet | https://t.co/Ac37LOe3xD |
| 1933 | 674008982932058114 | 1297 | 393 | Original tweet | https://t.co/PiSXXZjDSJ |
| 1934 | 673956914389192708 | 2091 | 1069 | Original tweet | https://t.co/nyReCVRiyd |
| 1935 | 673919437611909120 | 1251 | 401 | Original tweet | https://t.co/cdwPTsGEAb |
| 1936 | 673906403526995968 | 3406 | 1799 | Original tweet | https://t.co/t5rQHl6W8M |
| 1937 | 673887867907739649 | 994 | 274 | Original tweet | https://t.co/6qYd6BNSPd |
| 1938 | 673716320723169284 | 3289 | 843 | Original tweet | u |
| 1939 | 673715861853720576 | 3815 | 2303 | Original tweet | https://t.co/dFiaKZ9cDl |
| 1940 | 673711475735838725 | 1114 | 325 | Original tweet | https://t.co/MTOOksRzvH |
| 1941 | 673709992831262724 | 908 | 306 | Original tweet | https://t.co/s2ktuPQd79 |
| 1942 | 673708611235921920 | 1153 | 315 | Original tweet | https://t.co/kLV8zUCfc8 |
| 1943 | 673707060090052608 | 1177 | 434 | Original tweet | https://t.co/QyH1CaY3SM |
| 1944 | 673705679337693185 | 1337 | 439 | Original tweet | https://t.co/Ymg4fwKlZd |
| 1945 | 673700254269775872 | 1532 | 638 | Original tweet | https://t.co/mcPd5AFfhA |
| 1946 | 673697980713705472 | 4067 | 2165 | Original tweet | https://t.co/lepRCaGcgw |
| 1947 | 673689733134946305 | 1855 | 700 | Original tweet | https://t.co/YPsJasNVGe |
| 1948 | 673688752737402881 | 1325 | 534 | Original tweet | https://t.co/jMki5GOV3y |
| 1949 | 673686845050527744 | 1544 | 479 | Original tweet | https://t.co/wImU0jdx3E |
| 1950 | 673680198160809984 | 1460 | 521 | Original tweet | https://t.co/GwvpQiQ7oQ |
| 1951 | 673662677122719744 | 1339 | 397 | Original tweet | https://t.co/fJulMurnfj |
| 1952 | 673656262056419329 | 769 | 265 | Original tweet | https://t.co/PN8hxgZ9We |
| 1953 | 673636718965334016 | 1194 | 404 | Original tweet | https://t.co/gKlLpNzIl3 |
| 1954 | 673612854080196609 | 1691 | 802 | Original tweet | https://t.co/0iyItbtkr8 |
| 1955 | 673583129559498752 | 1273 | 403 | Original tweet | https://t.co/JpoEvgbDug |
| 1956 | 673580926094458881 | 882 | 297 | Original tweet | https://t.co/H6rqZyE4NP |
| 1957 | 673576835670777856 | 1482 | 613 | Original tweet | https://t.co/WlKiN3ll0w |
| 1958 | 673363615379013632 | 1088 | 338 | Original tweet | https://t.co/m8r9rbcgX4 |
| 1959 | 673359818736984064 | 1558 | 728 | Original tweet | https://t.co/EPq0MRAraJ |
| 1960 | 673355879178194945 | 1606 | 652 | Original tweet | https://t.co/0zUxlrhZrQ |
| 1961 | 673352124999274496 | 1761 | 597 | Original tweet | https://t.co/az5PLGzVNJ |
| 1962 | 673350198937153538 | 784 | 229 | Original tweet | https://t.co/RMv9EAv57u |
| 1963 | 673345638550134785 | 2700 | 1422 | Original tweet | https://t.co/GpSkpN8kXS |
| 1964 | 673343217010679808 | 1038 | 289 | Original tweet | https://t.co/dNUbKOSiWW |
| 1965 | 673342308415348736 | 1362 | 649 | Original tweet | https://t.co/w0YTuiRd1a |
| 1966 | 673320132811366400 | 14441 | 8705 | Original tweet | https://t.co/iJABMhVidf |
| 1967 | 673317986296586240 | 924 | 293 | Original tweet | https://t.co/juX48bWpng |
| 1968 | 673295268553605120 | 8046 | 3484 | Original tweet | https://t.co/U36HYQIijg |
| 1969 | 673270968295534593 | 1134 | 400 | Original tweet | https://t.co/mjC0QpXGum |
| 1970 | 673240798075449344 | 1510 | 798 | Original tweet | https://t.co/1euKoOvy49 |
| 1971 | 673213039743795200 | 2410 | 929 | Original tweet | https://t.co/CbvCUE6PFI |
| 1972 | 673148804208660480 | 1822 | 688 | Original tweet | https://t.co/tA4WpkI2cw |
| 1973 | 672997845381865473 | 2092 | 786 | Original tweet | https://t.co/dph1UHNJrg |
| 1974 | 672995267319328768 | 1001 | 328 | Original tweet | https://t.co/odpuqtz2Fq |
| 1975 | 672988786805112832 | 1039 | 314 | Original tweet | https://t.co/a3zYMcvbXG |
| 1976 | 672984142909456390 | 1338 | 593 | Original tweet | https://t.co/81BCQAyvcs |
| 1977 | 672980819271634944 | 1930 | 1079 | Original tweet | https://t.co/ufHWUFA9Pu |
| 1978 | 672975131468300288 | 1813 | 1015 | Original tweet | https://t.co/ZlcF0TIRW1 |
| 1979 | 672970152493887488 | 1019 | 391 | Original tweet | https://t.co/eb4ta0xtnd |
| 1980 | 672968025906282496 | 1405 | 602 | Original tweet | https://t.co/7CbO2eMAgJ |
| 1981 | 672964561327235073 | 1530 | 701 | Original tweet | https://t.co/1ui7a1ZLTT |
| 1982 | 672902681409806336 | 1452 | 550 | Original tweet | https://t.co/KpLyca3o3E |
| 1983 | 672898206762672129 | 944 | 459 | Original tweet | https://t.co/i4XJEWwdsp |
| 1984 | 672884426393653248 | 1661 | 897 | Original tweet | https://t.co/g5YkRqP0dg |
| 1985 | 672877615439593473 | 1096 | 405 | Original tweet | https://t.co/dJHI7uC2y3 |
| 1986 | 672834301050937345 | 1398 | 623 | Original tweet | https://t.co/BIljU0zhLN |
| 1987 | 672828477930868736 | 1343 | 533 | Original tweet | https://t.co/fvxHL6cRRs |
| 1988 | 672640509974827008 | 1032 | 348 | Original tweet | https://t.co/uNrmYDUa9M |
| 1989 | 672622327801233409 | 1377 | 542 | Original tweet | https://t.co/Cv7dRdcMvQ |
| 1990 | 672614745925664768 | 1302 | 644 | Original tweet | https://t.co/ntxsR98f3U |
| 1991 | 672609152938721280 | 1180 | 424 | Original tweet | https://t.co/YAVwvNaois |
| 1992 | 672604026190569472 | 1188 | 445 | Original tweet | https://t.co/xHXNaPAYRe |
| 1993 | 672594978741354496 | 1411 | 661 | Original tweet | https://t.co/jyXbZ35MYz |
| 1994 | 672591762242805761 | 1014 | 367 | Original tweet | https://t.co/bWQ0iIcP0w |
| 1995 | 672591271085670400 | 782 | 207 | Original tweet | https://t.co/Pa8EmpDCuI |
| 1996 | 672538107540070400 | 1089 | 404 | Original tweet | https://t.co/rSndxTL0Ap |
| 1997 | 672523490734551040 | 696 | 189 | Original tweet | https://t.co/EH0N3dFKUi |
| 1998 | 672488522314567680 | 1187 | 482 | Original tweet | https://t.co/rVfi6CCidK |
| 1999 | 672482722825261057 | 1221 | 665 | Original tweet | https://t.co/LPPa3btIIt |
| 2000 | 672481316919734272 | 757 | 137 | Original tweet | https://t.co/mVCMemhXAP |
| 2001 | 672475084225949696 | 1529 | 770 | Original tweet | https://t.co/mYhQvAdV4f |
| 2002 | 672466075045466113 | 1447 | 598 | Original tweet | https://t.co/8lKFBOQ2J5 |
| 2003 | 672272411274932228 | 6888 | 3677 | Original tweet | https://t.co/ZICNl6tIr5 |
| 2004 | 672267570918129665 | 1588 | 666 | Original tweet | https://t.co/jDXxZARQIZ |
| 2005 | 672264251789176834 | 1212 | 383 | Original tweet | https://t.co/TUeuaOmunV |
| 2006 | 672256522047614977 | 2999 | 1699 | Original tweet | https://t.co/PoMKKnKpRd |
| 2007 | 672254177670729728 | 1515 | 800 | Original tweet | https://t.co/OO6MqEbqG3 |
| 2008 | 672248013293752320 | 1833 | 656 | Original tweet | https://t.co/uhx5gfpx5k |
| 2009 | 672245253877968896 | 733 | 169 | Original tweet | https://t.co/aCRKDaFmVr |
| 2010 | 672239279297454080 | 953 | 347 | Original tweet | https://t.co/UHJE0UgMf7 |
| 2011 | 672231046314901505 | 1956 | 1089 | Original tweet | https://t.co/WH7Nzc5IBA |
| 2012 | 672222792075620352 | 833 | 231 | Original tweet | https://t.co/EW4MsOrF5O |
| 2013 | 672205392827572224 | 2414 | 1270 | Original tweet | https://t.co/yRBQF9OS7D |
| 2014 | 672169685991993344 | 1074 | 408 | Original tweet | https://t.co/AjBkGTyCeO |
| 2015 | 672160042234327040 | 918 | 395 | Original tweet | https://t.co/aNkkl5nH3W |
| 2016 | 672139350159835138 | 1876 | 792 | Original tweet | https://t.co/0OI927mmNJ |
| 2017 | 672125275208069120 | 2578 | 1253 | Original tweet | https://t.co/LquQZiZjJP |
| 2018 | 672095186491711488 | 1063 | 395 | Original tweet | https://t.co/ujnWy26RMe |
| 2019 | 672082170312290304 | 1003 | 402 | Original tweet | https://t.co/WTJtf9O8Jg |
| 2020 | 672068090318987265 | 1389 | 564 | Original tweet | https://t.co/XkMtCGhr4a |
| 2021 | 671896809300709376 | 9016 | 4519 | Original tweet | https://t.co/eqmkr2gmPH |
| 2022 | 671891728106971137 | 1415 | 618 | Original tweet | https://t.co/dzZYx2NByW |
| 2023 | 671882082306625538 | 3693 | 1488 | Original tweet | https://t.co/Clg16EVy9O |
| 2024 | 671879137494245376 | 1507 | 748 | Original tweet | https://t.co/vPXKSaNsbE |
| 2025 | 671874878652489728 | 1330 | 601 | Original tweet | https://t.co/3J7wkwW4FG |
| 2026 | 671866342182637568 | 1191 | 548 | Original tweet | https://t.co/FWJQ1zQLiI |
| 2027 | 671855973984772097 | 977 | 502 | Original tweet | https://t.co/gpWLdbposg |
| 2028 | 671789708968640512 | 7527 | 3811 | Original tweet | https://t.co/SfPQ2KeLdq |
| 2029 | 671768281401958400 | 1269 | 572 | Original tweet | https://t.co/TASnD8Q08S |
| 2030 | 671763349865160704 | 1788 | 999 | Original tweet | https://t.co/m9NleZ1i80 |
| 2031 | 671744970634719232 | 1430 | 841 | Original tweet | https://t.co/wwwYO9C9kl |
| 2032 | 671743150407421952 | 779 | 248 | Original tweet | https://t.co/2IslQ8ZSc7 |
| 2033 | 671735591348891648 | 1534 | 819 | Original tweet | https://t.co/TON0Irzgwr |
| 2034 | 671729906628341761 | 9119 | 4795 | Original tweet | https://t.co/DaD5SyajWt |
| 2035 | 671561002136281088 | 13679 | 7931 | Original tweet | https://t.co/q6RsuOVYwU |
| 2036 | 671550332464455680 | 967 | 229 | Original tweet | s |
| 2037 | 671547767500775424 | 1444 | 658 | Original tweet | https://t.co/f99MV0htAV |
| 2038 | 671544874165002241 | 2126 | 1145 | Original tweet | https://t.co/QVaEMsB9tS |
| 2039 | 671542985629241344 | 1166 | 616 | Original tweet | https://t.co/zzueJV9jCF |
| 2040 | 671538301157904385 | 993 | 436 | Original tweet | https://t.co/fUuiyu2QTD |
| 2041 | 671536543010570240 | 1253 | 441 | Original tweet | https://t.co/1U5Ro5FA4c |
| 2042 | 671533943490011136 | 1092 | 631 | Original tweet | https://t.co/pcx8jm1J1K |
| 2043 | 671528761649688577 | 896 | 280 | Original tweet | https://t.co/HwiLcDPaCi |
| 2044 | 671520732782923777 | 1499 | 582 | Original tweet | https://t.co/C7dPcCUNpF |
| 2045 | 671518598289059840 | 1010 | 319 | Original tweet | https://t.co/nLQoltwEZ7 |
| 2046 | 671511350426865664 | 1734 | 791 | Original tweet | https://t.co/OgDF2ES3Q9 |
| 2047 | 671504605491109889 | 7495 | 3866 | Original tweet | https://t.co/mGW5c50mPA |
| 2048 | 671497587707535361 | 980 | 481 | Original tweet | https://t.co/EY1uZJUGYJ |
| 2049 | 671488513339211776 | 1073 | 516 | Original tweet | https://t.co/CwUK5AIgeD |
| 2050 | 671486386088865792 | 621 | 226 | Original tweet | https://t.co/ympkwF65Dx |
| 2051 | 671485057807351808 | 806 | 253 | Original tweet | https://t.co/CqcRagJlyS |
| 2052 | 671390180817915904 | 1513 | 805 | Original tweet | https://t.co/U1mSS3Ykez |
| 2053 | 671362598324076544 | 1193 | 325 | Original tweet | https://t.co/onC3uMpFF2 |
| 2054 | 671357843010908160 | 426 | 157 | Original tweet | https://t.co/lS1TIDagIb |
| 2055 | 671355857343524864 | 508 | 119 | Original tweet | https://t.co/FoCULrC3rD |
| 2056 | 671347597085433856 | 1031 | 476 | Original tweet | https://t.co/svlkUlg3NH |
| 2057 | 671186162933985280 | 788 | 241 | Original tweet | https://t.co/96tMaWyoWt |
| 2058 | 671182547775299584 | 1193 | 378 | Original tweet | https://t.co/F7xwE0wmnu |
| 2059 | 671166507850801152 | 931 | 390 | Original tweet | https://t.co/gFl60yFJ0w |
| 2060 | 671163268581498880 | 1763 | 1198 | Original tweet | https://t.co/U7DQQdZ0mX |
| 2061 | 671159727754231808 | 401 | 89 | Original tweet | https://t.co/iHLo9rGay1 |
| 2062 | 671154572044468225 | 769 | 241 | Original tweet | https://t.co/RcksaUrGNu |
| 2063 | 671151324042559489 | 714 | 166 | Original tweet | https://t.co/NKHx0pcOii |
| 2064 | 671147085991960577 | 713 | 254 | Original tweet | https://t.co/34OhVhMkVr |
| 2065 | 671141549288370177 | 1246 | 713 | Original tweet | https://t.co/HYR611wiA4 |
| 2066 | 671138694582165504 | 996 | 448 | Original tweet | https://t.co/ycVJyFFkES |
| 2067 | 671134062904504320 | 796 | 212 | Original tweet | https://t.co/BHxr9O7wJY |
| 2068 | 671122204919246848 | 3729 | 2763 | Original tweet | https://t.co/WzVLdSHJU7 |
| 2069 | 671115716440031232 | 1436 | 842 | Original tweet | https://t.co/mZD7Bo7HfV |
| 2070 | 671109016219725825 | 1225 | 478 | Original tweet | https://t.co/sYi2G0he4H |
| 2071 | 670995969505435648 | 1175 | 317 | Original tweet | https://t.co/N9W5L7BLTm |
| 2072 | 670842764863651840 | 7989 | 4324 | Original tweet | https://t.co/yfAAo1gdeY |
| 2073 | 670840546554966016 | 634 | 213 | Original tweet | https://t.co/jBnz3MjTzX |
| 2074 | 670838202509447168 | 1189 | 758 | Original tweet | https://t.co/QY5uvMmmQk |
| 2075 | 670833812859932673 | 474 | 135 | Original tweet | https://t.co/459qWNnV3F |
| 2076 | 670832455012716544 | 780 | 242 | Original tweet | https://t.co/Hj2HtxpcSx |
| 2077 | 670826280409919488 | 5961 | 4485 | Original tweet | https://t.co/XOPXCSXiUT |
| 2078 | 670823764196741120 | 824 | 205 | Original tweet | https://t.co/m3ufSDwHHJ |
| 2079 | 670822709593571328 | 647 | 105 | Original tweet | https://t.co/yrqGyMZhW6 |
| 2080 | 670815497391357952 | 3410 | 1708 | Original tweet | https://t.co/nLYruSMRe6 |
| 2081 | 670811965569282048 | 1202 | 295 | Original tweet | https://t.co/eYP9i9gfYn |
| 2082 | 670807719151067136 | 1234 | 546 | Original tweet | https://t.co/idzH8JH06g |
| 2083 | 670804601705242624 | 2098 | 1035 | Original tweet | https://t.co/DM3ZP3AA7b |
| 2084 | 670803562457407488 | 362 | 95 | Original tweet | https://t.co/9ZuGAmLZDR |
| 2085 | 670797304698376195 | 780 | 262 | Original tweet | https://t.co/yqohZK4CL0 |
| 2086 | 670792680469889025 | 889 | 298 | Original tweet | https://t.co/gTy4WMXu8l |
| 2087 | 670789397210615808 | 700 | 255 | Original tweet | https://t.co/RGcNPsmAfY |
| 2088 | 670786190031921152 | 640 | 218 | Original tweet | https://t.co/3r7wznfuoa |
| 2089 | 670783437142401025 | 872 | 431 | Original tweet | https://t.co/jxukeh2BeO |
| 2090 | 670782429121134593 | 1691 | 863 | Original tweet | https://t.co/6dioUL6gcP |
| 2091 | 670780561024270336 | 831 | 317 | Original tweet | https://t.co/Viu56hVhhP |
| 2092 | 670778058496974848 | 345 | 77 | Original tweet | https://t.co/4g5kFdxp6g |
| 2093 | 670764103623966721 | 1154 | 466 | Original tweet | https://t.co/ZfS7chSsi7 |
| 2094 | 670755717859713024 | 475 | 123 | Original tweet | https://t.co/F6bI9dF16E |
| 2095 | 670733412878163972 | 1030 | 558 | Original tweet | https://t.co/NsDIt8Z80Z |
| 2096 | 670727704916926465 | 887 | 403 | Original tweet | https://t.co/SWnrQAFOtt |
| 2097 | 670717338665226240 | 1301 | 547 | Original tweet | https://t.co/W2MCt9pTed |
| 2098 | 670704688707301377 | 814 | 405 | Original tweet | https://t.co/I1lMUy1FqH |
| 2099 | 670691627984359425 | 632 | 266 | Original tweet | https://t.co/eCVj2xT59V |
| 2100 | 670679630144274432 | 799 | 315 | Original tweet | https://t.co/HMcD9SLOAN |
| 2101 | 670676092097810432 | 267 | 45 | Original tweet | https://t.co/IAc1QCczMc |
| 2102 | 670668383499735048 | 11452 | 5537 | Original tweet | https://t.co/NECxEHN5YU |
| 2103 | 670474236058800128 | 1635 | 835 | Original tweet | https://t.co/7JMAHdJ6A4 |
| 2104 | 670468609693655041 | 375 | 90 | Original tweet | https://t.co/dupWSIpSrG |
| 2105 | 670465786746662913 | 1048 | 608 | Original tweet | https://t.co/2BnCLtJMxD |
| 2106 | 670452855871037440 | 580 | 225 | Original tweet | https://t.co/35BcGFdEAK |
| 2107 | 670449342516494336 | 1264 | 729 | Original tweet | https://t.co/cixC0M3P1e |
| 2108 | 670444955656130560 | 7120 | 2153 | Original tweet | https://t.co/J5Mqn8VeYq |
| 2109 | 670442337873600512 | 690 | 213 | Original tweet | https://t.co/mzPoS9wCqp |
| 2110 | 670435821946826752 | 1127 | 570 | Original tweet | https://t.co/sQuKwSKtDE |
| 2111 | 670434127938719744 | 1501 | 708 | Original tweet | https://t.co/cwoP1ftbrj |
| 2112 | 670433248821026816 | 345 | 122 | Original tweet | https://t.co/PXnCdz8qzK |
| 2113 | 670428280563085312 | 1484 | 694 | Original tweet | https://t.co/Fm1SvVLsad |
| 2114 | 670427002554466305 | 551 | 179 | Original tweet | https://t.co/CtuJoLHiDo |
| 2115 | 670421925039075328 | 1415 | 709 | Original tweet | https://t.co/tLRyYvCci3 |
| 2116 | 670420569653809152 | 668 | 342 | Original tweet | https://t.co/Z5nqlfjYJi |
| 2117 | 670417414769758208 | 604 | 350 | Original tweet | https://t.co/Dfv2YaHPMn |
| 2118 | 670411370698022913 | 2176 | 991 | Original tweet | https://t.co/1DJfHmfBQN |
| 2119 | 670408998013820928 | 600 | 249 | Original tweet | https://t.co/LXVEHo9JMY |
| 2120 | 670403879788544000 | 460 | 173 | Original tweet | https://t.co/vSd1TWFK1I |
| 2121 | 670385711116361728 | 593 | 234 | Original tweet | https://t.co/MAZx8MPF0S |
| 2122 | 670374371102445568 | 785 | 295 | Original tweet | https://t.co/8yzgYzP94K |
| 2123 | 670361874861563904 | 344 | 71 | Original tweet | https://t.co/98ZBi6o4dj |
| 2124 | 670338931251150849 | 451 | 122 | Original tweet | https://t.co/iTc578yDmY |
| 2125 | 670319130621435904 | 4110 | 1359 | Original tweet | https://t.co/QnfO7HEQGA |
| 2126 | 670303360680108032 | 452 | 151 | Original tweet | https://t.co/yV3Qgjh8iN |
| 2127 | 670290420111441920 | 750 | 315 | Original tweet | https://t.co/orbkAq9kYF |
| 2128 | 670093938074779648 | 1106 | 365 | Original tweet | https://t.co/vYs9IVzHY9 |
| 2129 | 670086499208155136 | 740 | 275 | Original tweet | https://t.co/DuQXATW27f |
| 2130 | 670079681849372674 | 2390 | 1373 | Original tweet | https://t.co/Qvj4JZGdQD |
| 2131 | 670073503555706880 | 1674 | 874 | Original tweet | https://t.co/exGrzT9O88 |
| 2132 | 670069087419133954 | 676 | 278 | Original tweet | https://t.co/pzrvc7wKGd |
| 2133 | 670061506722140161 | 822 | 373 | Original tweet | https://t.co/uQMFKv1vjn |
| 2134 | 670055038660800512 | 716 | 357 | Original tweet | https://t.co/0gY6XTOpn3 |
| 2135 | 670046952931721218 | 684 | 191 | Original tweet | https://t.co/465sIBdvzU |
| 2136 | 670040295598354432 | 801 | 118 | Original tweet | https://t.co/5iYF0Ci0EK |
| 2137 | 670037189829525505 | 625 | 306 | Original tweet | https://t.co/rOTOteKx4q |
| 2138 | 670003130994700288 | 352 | 100 | Original tweet | https://t.co/3NTykJmtHt |
| 2139 | 669993076832759809 | 344 | 92 | Original tweet | https://t.co/kR1fqy4NKK |
| 2140 | 669972011175813120 | 471 | 175 | Original tweet | https://t.co/A6XnvxHiUQ |
| 2141 | 669970042633789440 | 317 | 65 | Original tweet | https://t.co/aeURGO9Qs8 |
| 2142 | 669942763794931712 | 536 | 183 | Original tweet | https://t.co/1VJoY3OJ1F |
| 2143 | 669926384437997569 | 400 | 115 | Original tweet | https://t.co/9RYY2NtHDw |
| 2144 | 669923323644657664 | 250 | 64 | Original tweet | https://t.co/6GUGO7azNX |
| 2145 | 669753178989142016 | 858 | 431 | Original tweet | https://t.co/63jh1tYZa5 |
| 2146 | 669749430875258880 | 289 | 71 | Original tweet | https://t.co/tbFaTUHLJB |
| 2147 | 669684865554620416 | 551 | 99 | Original tweet | 0 |
| 2148 | 669683899023405056 | 412 | 119 | Original tweet | https://t.co/NvKJRYDosA |
| 2149 | 669682095984410625 | 375 | 146 | Original tweet | https://t.co/RAwZvMKRZB |
| 2150 | 669680153564442624 | 712 | 311 | Original tweet | https://t.co/IQFZKNUlXx |
| 2151 | 669661792646373376 | 860 | 482 | Original tweet | https://t.co/ODnILTr4QM |
| 2152 | 669625907762618368 | 3769 | 1963 | Original tweet | https://t.co/eqeWw67oU7 |
| 2153 | 669603084620980224 | 1006 | 401 | Original tweet | https://t.co/MSIbWu4YYs |
| 2154 | 669597912108789760 | 550 | 163 | Original tweet | https://t.co/XmCvma01fF |
| 2155 | 669583744538451968 | 1587 | 1017 | Original tweet | https://t.co/f8GXeDbFzu |
| 2156 | 669573570759163904 | 467 | 156 | Original tweet | https://t.co/UpFFYhA1Id |
| 2157 | 669571471778410496 | 1684 | 1085 | Original tweet | https://t.co/fa7olwrF9Y |
| 2158 | 669567591774625800 | 248 | 61 | Original tweet | https://t.co/XPLB3eoXiX |
| 2159 | 669564461267722241 | 413 | 133 | Original tweet | https://t.co/eCRdwouKCl |
| 2160 | 669393256313184256 | 383 | 83 | Original tweet | https://t.co/juktj5qiaD |
| 2161 | 669375718304980992 | 1425 | 792 | Original tweet | https://t.co/ero0XfdGtY |
| 2162 | 669371483794317312 | 524 | 196 | Original tweet | https://t.co/fj4c170cxk |
| 2163 | 669367896104181761 | 485 | 172 | Original tweet | https://t.co/yoB0SM1AAP |
| 2164 | 669363888236994561 | 669 | 252 | Original tweet | https://t.co/jPkd7hhX7m |
| 2165 | 669359674819481600 | 390 | 134 | Original tweet | https://t.co/Eh2v0AyJbi |
| 2166 | 669354382627049472 | 2889 | 1390 | Original tweet | https://t.co/JtA1TG21Xx |
| 2167 | 669353438988365824 | 687 | 281 | Original tweet | https://t.co/qDS1aCqppv |
| 2168 | 669351434509529089 | 474 | 207 | Original tweet | https://t.co/zKNF77dxEA |
| 2169 | 669328503091937280 | 1081 | 452 | Original tweet | https://t.co/0twoigv5jP |
| 2170 | 669327207240699904 | 610 | 127 | Original tweet | https://t.co/6WGFp9cuj6 |
| 2171 | 669324657376567296 | 525 | 223 | Original tweet | https://t.co/R5Z6jBTdhc |
| 2172 | 669216679721873412 | 958 | 422 | Original tweet | https://t.co/d8ybynaRwZ |
| 2173 | 669214165781868544 | 468 | 183 | Original tweet | https://t.co/cieaOI0RuT |
| 2174 | 669203728096960512 | 1074 | 522 | Original tweet | https://t.co/HPoce45SI3 |
| 2175 | 669037058363662336 | 698 | 336 | Original tweet | https://t.co/Lh1BsJrWPp |
| 2176 | 669015743032369152 | 785 | 403 | Original tweet | https://t.co/Jykq2iq3qN |
| 2177 | 669006782128353280 | 610 | 269 | Original tweet | https://t.co/k0ddVUWTcu |
| 2178 | 669000397445533696 | 22118 | 6965 | Original tweet | https://t.co/ixcuUYCbdD |
| 2179 | 668994913074286592 | 468 | 254 | Original tweet | https://t.co/w5oYFXi0uh |
| 2180 | 668992363537309700 | 802 | 381 | Original tweet | https://t.co/tiVuq6MNwl |
| 2181 | 668989615043424256 | 726 | 356 | Original tweet | https://t.co/1zBp1moFlX |
| 2182 | 668988183816871936 | 961 | 516 | Original tweet | https://t.co/bMhs18elNF |
| 2183 | 668986018524233728 | 578 | 183 | Original tweet | https://t.co/j0Wpa42KCH |
| 2184 | 668981893510119424 | 573 | 340 | Original tweet | https://t.co/0EJXxE9UxW |
| 2185 | 668979806671884288 | 842 | 382 | Original tweet | https://t.co/uxdOfblUB0 |
| 2186 | 668975677807423489 | 1386 | 641 | Original tweet | https://t.co/LqAMlFVBoY |
| 2187 | 668967877119254528 | 161 | 25 | Original tweet | 5 |
| 2188 | 668960084974809088 | 757 | 263 | Original tweet | https://t.co/952hUV6RiK |
| 2189 | 668955713004314625 | 300 | 77 | Original tweet | https://t.co/Dmy2mY2Qj5 |
| 2190 | 668932921458302977 | 284 | 63 | Original tweet | https://t.co/rcrKkL7eB6 |
| 2191 | 668902994700836864 | 338 | 107 | Original tweet | https://t.co/UqCvpSgMJe |
| 2192 | 668892474547511297 | 422 | 164 | Original tweet | https://t.co/HyDpTU5Jhj |
| 2193 | 668872652652679168 | 566 | 322 | Original tweet | https://t.co/up0MHRxelf |
| 2194 | 668852170888998912 | 479 | 184 | Original tweet | https://t.co/OmxouCZ8IY |
| 2195 | 668826086256599040 | 467 | 150 | Original tweet | https://t.co/Ko7eCsFpnI |
| 2196 | 668815180734689280 | 610 | 291 | Original tweet | https://t.co/IGmVbz07tZ |
| 2197 | 668779399630725120 | 749 | 409 | Original tweet | https://t.co/YVAJgWHzPW |
| 2198 | 668655139528511488 | 562 | 233 | Original tweet | https://t.co/mwnBN6ZkPt |
| 2199 | 668645506898350081 | 962 | 588 | Original tweet | https://t.co/70X1TIXn38 |
| 2200 | 668643542311546881 | 939 | 576 | Original tweet | https://t.co/IiSdmhkC5N |
| 2201 | 668641109086707712 | 1145 | 573 | Original tweet | https://t.co/pKJK23j0QZ |
| 2202 | 668636665813057536 | 1114 | 528 | Original tweet | https://t.co/EM5fDykrJg |
| 2203 | 668633411083464705 | 3024 | 1788 | Original tweet | https://t.co/k8P6FZlzAG |
| 2204 | 668631377374486528 | 763 | 349 | Original tweet | https://t.co/fvVNScw8VH |
| 2205 | 668627278264475648 | 341 | 123 | Original tweet | https://t.co/3FuNbzyPwo |
| 2206 | 668625577880875008 | 417 | 140 | Original tweet | https://t.co/0zBycaxyvs |
| 2207 | 668623201287675904 | 1551 | 851 | Original tweet | https://t.co/TIhVKEIPqj |
| 2208 | 668620235289837568 | 211 | 45 | Original tweet | https://t.co/AGyogHtmXx |
| 2209 | 668614819948453888 | 654 | 341 | Original tweet | https://t.co/2Su7gmsnZm |
| 2210 | 668587383441514497 | 1760 | 1174 | Original tweet | https://t.co/roqIxCvEB3 |
| 2211 | 668567822092664832 | 265 | 62 | Original tweet | https://t.co/81kzPgqjQ3 |
| 2212 | 668544745690562560 | 561 | 250 | Original tweet | https://t.co/ALNyYuGui7 |
| 2213 | 668542336805281792 | 497 | 231 | Original tweet | https://t.co/VvYVbsi6c3 |
| 2214 | 668537837512433665 | 265 | 79 | Original tweet | https://t.co/stEodX9Aba |
| 2215 | 668528771708952576 | 496 | 242 | Original tweet | https://t.co/zpdBQCcYgW |
| 2216 | 668507509523615744 | 345 | 116 | Original tweet | https://t.co/HvNg9JWxFt |
| 2217 | 668496999348633600 | 436 | 146 | Original tweet | https://t.co/Edy7B5vOp2 |
| 2218 | 668484198282485761 | 453 | 253 | Original tweet | https://t.co/uXgmECGYEB |
| 2219 | 668480044826800133 | 491 | 162 | Original tweet | https://t.co/be3zMW0Qj5 |
| 2220 | 668466899341221888 | 936 | 560 | Original tweet | https://t.co/YOHe6lf09m |
| 2221 | 668297328638447616 | 656 | 319 | Original tweet | https://t.co/P8bivfp5sU |
| 2222 | 668291999406125056 | 264 | 34 | Original tweet | https://t.co/fM0KXns7Or |
| 2223 | 668286279830867968 | 535 | 149 | Original tweet | https://t.co/C8U6cxI1Jc |
| 2224 | 668274247790391296 | 886 | 248 | Original tweet | https://t.co/3j9kZRcpVB |
| 2225 | 668268907921326080 | 592 | 261 | Original tweet | https://t.co/aeZykWwiJN |
| 2226 | 668256321989451776 | 1385 | 667 | Original tweet | https://t.co/L6qAEV5PAd |
| 2227 | 668248472370458624 | 1056 | 523 | Original tweet | https://t.co/1XYRh8N00K |
| 2228 | 668237644992782336 | 6614 | 3100 | Original tweet | https://t.co/TnSRDqYO5i |
| 2229 | 668226093875376128 | 323 | 115 | Original tweet | https://t.co/jWVwSppaa2 |
| 2230 | 668221241640230912 | 537 | 215 | Original tweet | https://t.co/4pw1QQ6udh |
| 2231 | 668204964695683073 | 586 | 206 | Original tweet | https://t.co/4ilfcR5SlK |
| 2232 | 668190681446379520 | 696 | 210 | Original tweet | https://t.co/2wm0POA9N2 |
| 2233 | 668171859951755264 | 525 | 208 | Original tweet | https://t.co/XpseHBlAAb |
| 2234 | 668154635664932864 | 522 | 336 | Original tweet | https://t.co/79sHR36NsI |
| 2235 | 668142349051129856 | 592 | 306 | Original tweet | https://t.co/DnhUw0aBM2 |
| 2236 | 668113020489474048 | 709 | 265 | Original tweet | https://t.co/GCJzm3YsfX |
| 2237 | 667937095915278337 | 1356 | 866 | Original tweet | https://t.co/x89NSCEZCq |
| 2238 | 667924896115245057 | 318 | 119 | Original tweet | https://t.co/fW6kIPFGD2 |
| 2239 | 667915453470232577 | 222 | 59 | Original tweet | https://t.co/tIaaBIMlJN |
| 2240 | 667911425562669056 | 523 | 329 | Original tweet | https://t.co/SyMoWrp368 |
| 2241 | 667902449697558528 | 905 | 396 | Original tweet | https://t.co/sJeHdGUt0W |
| 2242 | 667886921285246976 | 2011 | 1180 | Original tweet | https://t.co/MT7Q4aDQS1 |
| 2243 | 667885044254572545 | 868 | 530 | Original tweet | https://t.co/7rkYZQdKEd |
| 2244 | 667878741721415682 | 409 | 127 | Original tweet | https://t.co/LvP1TTYSCN |
| 2245 | 667873844930215936 | 667 | 440 | Original tweet | https://t.co/ODqrL3zXYE |
| 2246 | 667866724293877760 | 3172 | 1110 | Original tweet | https://t.co/SBmWbfAg6X |
| 2247 | 667861340749471744 | 253 | 86 | Original tweet | https://t.co/J4GnJ5Swba |
| 2248 | 667832474953625600 | 303 | 68 | Original tweet | https://t.co/z1xPTgVLc7 |
| 2249 | 667806454573760512 | 1111 | 535 | Original tweet | https://t.co/TBmDJXJB75 |
| 2250 | 667801013445750784 | 346 | 101 | Original tweet | https://t.co/SVMF4Frf1w |
| 2251 | 667793409583771648 | 736 | 358 | Original tweet | https://t.co/s1z7mX4c9O |
| 2252 | 667782464991965184 | 434 | 261 | Original tweet | https://t.co/BY8nQAMz0x |
| 2253 | 667773195014021121 | 243 | 61 | Original tweet | https://t.co/ZU0i0KJyqD |
| 2254 | 667766675769573376 | 476 | 243 | Original tweet | https://t.co/3Bbba7y8Xe |
| 2255 | 667728196545200128 | 398 | 162 | Original tweet | https://t.co/LwrCwlWwPB |
| 2256 | 667724302356258817 | 517 | 341 | Original tweet | https://t.co/0nIxPTDWAZ |
| 2257 | 667550904950915073 | 0 | 37 | Original tweet | https://t.co/uarnTjBeVA |
| 2258 | 667550882905632768 | 0 | 34 | Original tweet | https://t.co/r7XzeQZWzb |
| 2259 | 667549055577362432 | 6138 | 2454 | Original tweet | https://t.co/i9iSGNn3fx |
| 2260 | 667546741521195010 | 355 | 138 | Original tweet | https://t.co/afRtVsoIIb |
| 2261 | 667544320556335104 | 917 | 568 | Original tweet | https://t.co/8zcwIoiuqR |
| 2262 | 667538891197542400 | 220 | 72 | Original tweet | https://t.co/IQTOMqDUIe |
| 2263 | 667534815156183040 | 866 | 576 | Original tweet | https://t.co/CpPxD28IpV |
| 2264 | 667530908589760512 | 501 | 264 | Original tweet | https://t.co/xoRWyQTcmy |
| 2265 | 667524857454854144 | 1798 | 1198 | Original tweet | https://t.co/seESNzgsdm |
| 2266 | 667517642048163840 | 389 | 203 | Original tweet | https://t.co/fh5KflzBR0 |
| 2267 | 667509364010450944 | 7148 | 2272 | Original tweet | https://t.co/0aDF62KVP7 |
| 2268 | 667502640335572993 | 563 | 231 | Original tweet | https://t.co/n5Wtb5Hvsl |
| 2269 | 667495797102141441 | 565 | 294 | Original tweet | https://t.co/5NhPV8E45i |
| 2270 | 667491009379606528 | 559 | 242 | Original tweet | https://t.co/ITxxcc4v9y |
| 2271 | 667470559035432960 | 273 | 102 | Original tweet | https://t.co/J4vn2rOYFk |
| 2272 | 667455448082227200 | 203 | 66 | Original tweet | https://t.co/uLzRi1drVK |
| 2273 | 667453023279554560 | 327 | 96 | Original tweet | https://t.co/6uLCWR9Efa |
| 2274 | 667443425659232256 | 833 | 620 | Original tweet | https://t.co/rqO4I3nf2N |
| 2275 | 667437278097252352 | 483 | 257 | Original tweet | https://t.co/97HuBrVuOx |
| 2276 | 667435689202614272 | 326 | 89 | Original tweet | https://t.co/PQni2sjPsm |
| 2277 | 667405339315146752 | 489 | 234 | Original tweet | https://t.co/3Fm9PwLju1 |
| 2278 | 667393430834667520 | 211 | 60 | Original tweet | https://t.co/A37eGLz5WS |
| 2279 | 667369227918143488 | 385 | 173 | Original tweet | https://t.co/LEaviT37v1 |
| 2280 | 667211855547486208 | 516 | 258 | Original tweet | https://t.co/azEoGqVonH |
| 2281 | 667200525029539841 | 658 | 282 | Original tweet | https://t.co/60xYFRATPZ |
| 2282 | 667192066997374976 | 414 | 115 | Original tweet | https://t.co/QCugm5ydl6 |
| 2283 | 667188689915760640 | 784 | 449 | Original tweet | https://t.co/8uCMwS9CbV |
| 2284 | 667182792070062081 | 15075 | 6618 | Original tweet | https://t.co/s2yYuHabWl |
| 2285 | 667177989038297088 | 200 | 58 | Original tweet | https://t.co/jpaeu6LNmW |
| 2286 | 667176164155375616 | 640 | 484 | Original tweet | https://t.co/PZxSarAfSN |
| 2287 | 667174963120574464 | 262 | 88 | Original tweet | https://t.co/fGDWgukcBs |
| 2288 | 667171260800061440 | 235 | 97 | Original tweet | https://t.co/6RHNRsByOY |
| 2289 | 667165590075940865 | 2819 | 1241 | Original tweet | https://t.co/li2XYBVuAY |
| 2290 | 667160273090932737 | 268 | 66 | Original tweet | https://t.co/DKhgkMx4N1 |
| 2291 | 667152164079423490 | 49720 | 18285 | Original tweet | https://t.co/h9R0EwKd9X |
| 2292 | 667138269671505920 | 4851 | 2387 | Original tweet | https://t.co/0DvHAMdA4V |
| 2293 | 667119796878725120 | 346 | 135 | Original tweet | https://t.co/3LZrJzg3BJ |
| 2294 | 667090893657276420 | 349 | 132 | Original tweet | https://t.co/Ks0jZtdIrr |
| 2295 | 667073648344346624 | 425 | 134 | Original tweet | https://t.co/DPSamreuRq |
| 2296 | 667070482143944705 | 88 | 14 | Original tweet | 0 |
| 2297 | 667065535570550784 | 175 | 51 | Original tweet | https://t.co/7JdgVqDnvR |
| 2298 | 667062181243039745 | 227 | 57 | Original tweet | https://t.co/tz1lpuvXLA |
| 2299 | 667044094246576128 | 198 | 54 | Original tweet | https://t.co/QZAnwgnOMB |
| 2300 | 667012601033924608 | 471 | 237 | Original tweet | https://t.co/bATAbPNv0m |
| 2301 | 666996132027977728 | 258 | 102 | Original tweet | https://t.co/SVpNbhaIMk |
| 2302 | 666983947667116034 | 2679 | 1040 | Original tweet | https://t.co/cyDfaK8NBc |
| 2303 | 666837028449972224 | 857 | 584 | Original tweet | https://t.co/xYGdBrMS9h |
| 2304 | 666835007768551424 | 222 | 83 | Original tweet | https://t.co/ZnEMHBsAs1 |
| 2305 | 666826780179869698 | 266 | 105 | Original tweet | https://t.co/V6ZzG45zzG |
| 2306 | 666817836334096384 | 540 | 267 | Original tweet | https://t.co/8whlkYw3mO |
| 2307 | 666804364988780544 | 250 | 95 | Original tweet | https://t.co/RdKbAOEpDK |
| 2308 | 666786068205871104 | 800 | 521 | Original tweet | https://t.co/EIn5kElY1S |
| 2309 | 666781792255496192 | 404 | 211 | Original tweet | https://t.co/uEvsGLOFHa |
| 2310 | 666776908487630848 | 368 | 186 | Original tweet | https://t.co/XNGeDwrtYH |
| 2311 | 666739327293083650 | 244 | 71 | Original tweet | https://t.co/tI3uFLDHBI |
| 2312 | 666701168228331520 | 449 | 234 | Original tweet | https://t.co/uQbZJM2DQB |
| 2313 | 666691418707132416 | 196 | 51 | Original tweet | https://t.co/bg4TqvvkuF |
| 2314 | 666649482315059201 | 923 | 608 | Original tweet | https://t.co/vXMKrJC81s |
| 2315 | 666644823164719104 | 238 | 88 | Original tweet | https://t.co/LEkZjZxESQ |
| 2316 | 666454714377183233 | 545 | 223 | Original tweet | https://t.co/uPqPeXAcua |
| 2317 | 666447344410484738 | 107 | 23 | Original tweet | https://t.co/kH60oka1HW |
| 2318 | 666437273139982337 | 131 | 52 | Original tweet | https://t.co/7LtjBS0GPK |
| 2319 | 666435652385423360 | 170 | 54 | Original tweet | https://t.co/GlFZPzqcEU |
| 2320 | 666430724426358785 | 330 | 204 | Original tweet | https://t.co/yECbFrSArM |
| 2321 | 666428276349472768 | 171 | 90 | Original tweet | https://t.co/NMQq6HIglK |
| 2322 | 666421158376562688 | 327 | 118 | Original tweet | https://t.co/YMcrXC2Y6R |
| 2323 | 666418789513326592 | 129 | 48 | Original tweet | https://t.co/qXpcwENTvn |
| 2324 | 666411507551481857 | 459 | 339 | Original tweet | https://t.co/aMCTNWO94t |
| 2325 | 666407126856765440 | 113 | 44 | Original tweet | https://t.co/LopTBkKa8h |
| 2326 | 666396247373291520 | 172 | 92 | Original tweet | https://t.co/Dc7b0E8qFE |
| 2327 | 666373753744588802 | 194 | 100 | Original tweet | https://t.co/uHXrPkUEyl |
| 2328 | 666362758909284353 | 804 | 595 | Original tweet | https://t.co/XMD9CwjEnM |
| 2329 | 666353288456101888 | 229 | 77 | Original tweet | https://t.co/tltQ5w9aUO |
| 2330 | 666345417576210432 | 307 | 146 | Original tweet | https://t.co/VFKG1vxGjB |
| 2331 | 666337882303524864 | 204 | 96 | Original tweet | https://t.co/QpRjllzWAL |
| 2332 | 666293911632134144 | 522 | 368 | Original tweet | https://t.co/IIXis0zta0 |
| 2333 | 666287406224695296 | 152 | 71 | Original tweet | https://t.co/d9NcXFKwLv |
| 2334 | 666273097616637952 | 184 | 82 | Original tweet | https://t.co/ws2AMaNwPW |
| 2335 | 666268910803644416 | 108 | 37 | Original tweet | https://t.co/0yxApIikpk |
| 2336 | 666104133288665088 | 14765 | 6871 | Original tweet | https://t.co/Asgdc6kuLX |
| 2337 | 666102155909144576 | 81 | 16 | Original tweet | https://t.co/11LvqN4WLq |
| 2338 | 666099513787052032 | 164 | 73 | Original tweet | https://t.co/Ri4nMTLq5C |
| 2339 | 666094000022159362 | 169 | 79 | Original tweet | https://t.co/mnioXo3IfP |
| 2340 | 666082916733198337 | 121 | 47 | Original tweet | https://t.co/3RU6x0vHB7 |
| 2341 | 666073100786774016 | 335 | 174 | Original tweet | https://t.co/Yk6GHE9tOY |
| 2342 | 666071193221509120 | 154 | 67 | Original tweet | https://t.co/ZoL8kq2XFx |
| 2343 | 666063827256086533 | 496 | 232 | Original tweet | https://t.co/RhUEAloehK |
| 2344 | 666058600524156928 | 115 | 61 | Original tweet | https://t.co/pYAJkAe76p |
| 2345 | 666057090499244032 | 304 | 146 | Original tweet | https://t.co/yWBqbrzy8O |
| 2346 | 666055525042405380 | 448 | 261 | Original tweet | https://t.co/rdivxLiqEt |
| 2347 | 666051853826850816 | 1253 | 879 | Original tweet | https://t.co/v5A4vzSDdc |
| 2348 | 666050758794694657 | 136 | 60 | Original tweet | https://t.co/fvIbQfHjIe |
| 2349 | 666049248165822465 | 111 | 41 | Original tweet | https://t.co/4B7cOc1EDq |
| 2350 | 666044226329800704 | 311 | 147 | Original tweet | https://t.co/DWnyCjf2mx |
| 2351 | 666033412701032449 | 128 | 47 | Original tweet | https://t.co/y671yMhoiR |
| 2352 | 666029285002620928 | 132 | 48 | Original tweet | https://t.co/r7mOb2m0UI |
| 2353 | 666020888022790149 | 2535 | 532 | Original tweet | https://t.co/BLDqew2Ijj |
Visual assessment of the dataframes:
x_archive:
predictions:
tweet_data
PROGRAMMATICAL ASSESSMENT:
x_archive
We will start with info() to find out the potential issues like null values or data types
x_archive.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2356 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2356 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2356 non-null object 4 source 2356 non-null object 5 text 2356 non-null object 6 retweeted_status_id 181 non-null float64 7 retweeted_status_user_id 181 non-null float64 8 retweeted_status_timestamp 181 non-null object 9 expanded_urls 2297 non-null object 10 rating_numerator 2356 non-null int64 11 rating_denominator 2356 non-null int64 12 name 2356 non-null object 13 doggo 2356 non-null object 14 floofer 2356 non-null object 15 pupper 2356 non-null object 16 puppo 2356 non-null object dtypes: float64(4), int64(3), object(10) memory usage: 313.0+ KB
To keep in mind for Assessment Summary: The timestamp column has Dtype 'object' while it should be datetime, The dog type should be rather a categorical Dtype, x_archive contains retweets, which should be deleted as first: we focus on the original content from WeRateDogs, second: it might confuse the results (the same urls)
There are retweets in the x_archive which most probably have the same url what can cause confusion. We will need to correct it later.
# We will filter rows from a DataFrame x_archive
# where the columns 'retweeted_status_id', 'retweeted_status_user_id', and 'retweeted_status_timestamp'
# are not null, and then we will calculate the length of the resulting DataFrame
#to check the number of rows where these three columns are filled.
#If they are all in the same rows, the resulting number should be 181 (the number of non-null values for each
#of the columns)
filtered_archive = x_archive[(x_archive['retweeted_status_id'].notnull()) &
(x_archive['retweeted_status_user_id'].notnull()) &
(x_archive['retweeted_status_timestamp'].notnull())]
length_of_filtered_archive = len(filtered_archive)
length_of_filtered_archive
181
The above result confirms that the values are in the same rows
We have a column with expanded urls. I needed to check (Google search) what an expanded url is in order to decide if the column should stay in the final dataframe. An expanded URL is the full, original URL that a shortened URL or a redirection link resolves to. It reveals the actual destination of these shortened links, so that you know exactly where you're being directed For safety and transparency of user's web browsing experience, this column is important. Let's have a closer look on the urls and to what content they realte by sampling the column randomly
I want to see the whole expanded url so first I will set display options. Then, I will use sample() to randomly desplay examples of expanded_urls
# Set display options to show the full content in a column
pd.set_option('display.max_colwidth', None)
#give 10 random samples from the x_archive expanded_urls column
x_archive['expanded_urls'].sample(5)
1107 https://twitter.com/dog_rates/status/734776360183431168/photo/1 1145 https://twitter.com/dog_rates/status/727175381690781696/photo/1,https://twitter.com/dog_rates/status/727175381690781696/photo/1 1104 https://twitter.com/dog_rates/status/735137028879360001/photo/1 1039 https://twitter.com/dog_rates/status/744234799360020481/video/1 1089 https://twitter.com/dog_rates/status/737800304142471168/photo/1 Name: expanded_urls, dtype: object
Looks like mostly these urls are related to photo/video content. I am curious, however, if there are links related to different content. Let's check
# Check for URLs that do not contain 'photo' or 'video' and are not null
# Filter for non-null URLs that do not contain 'photo' or 'video'
filtered_urls = x_archive[x_archive['expanded_urls'].notnull() &
~x_archive['expanded_urls'].str.contains('photo|video', case=False, na=False)]
# Display the filtered URLs
filtered_urls['expanded_urls']
32 https://twitter.com/dog_rates/status/886053434075471873,https://twitter.com/dog_rates/status/886053434075471873 35 https://twitter.com/4bonds2carbon/status/885517367337512960 42 https://twitter.com/kaijohnson_19/status/883965650754039809 72 https://twitter.com/bbcworld/status/878599868507402241 83 https://twitter.com/mpstowerham/status/876162994446753793 88 https://twitter.com/drboondoc/status/874413398133547008 110 https://twitter.com/animalcog/status/871075758080503809 133 https://twitter.com/nbcnews/status/866458718883467265 190 https://twitter.com/perfy/status/855857318168150016 192 https://twitter.com/markhalperin/status/855656431005061120 241 https://twitter.com/shomaristone/status/846484798663245829 243 https://twitter.com/csncapitals/status/846088479142531073 256 https://twitter.com/brianstack153/status/796796054100471809 269 https://twitter.com/abc/status/841311395547250688 283 https://twitter.com/ktla/status/838948714227998720 310 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/v/5W2Dg3XPX7a 323 https://twitter.com/stevekopack/status/834086676934836224 334 https://twitter.com/telegraph/status/832268302944579584 335 http://us.blastingnews.com/news/2017/02/jfk-announces-its-first-ever-ark-oasis-animal-terminal-001480161.html?sbdht=_pM1QUzk3wsdTxcmMoRPV7FWYYlsNKcFRcYSY7OmeHnOXA4NtUM6PLQ2_ 404 https://twitter.com/badlandsnps/status/823966201328046080 406 https://vine.co/v/5gKxeUpuKEr,https://vine.co/v/5gKxeUpuKEr 444 http://us.blastingnews.com/news/2017/01/200-dogs-saved-from-south-korean-dog-meat-industry-001385441.html?sbdht=_pM1QUzk3wsfscF9XF2WEd9KoWDpsQlMUjfh1HxxUq0u5mMbiu2B0kw2_ 450 https://vine.co/v/5QWd3LZqXxd,https://vine.co/v/5QWd3LZqXxd 458 https://twitter.com/micahgrimes/status/817902080979599361 529 https://vine.co/v/5QWd3LZqXxd 539 https://twitter.com/deadspin/status/806570933175652352 546 https://vine.co/v/5ghHLBMMdlV,https://vine.co/v/5ghHLBMMdlV 551 https://twitter.com/bvuepd/status/804417859124273152 562 https://vine.co/v/5FwUWjYaW0Y 577 https://twitter.com/littlewiewel/status/800852955880628224,https://twitter.com/littlewiewel/status/800852955880628224 620 https://twitter.com/king5seattle/status/796123679771897856 654 https://vine.co/v/eEZXZI1rqxX,https://vine.co/v/eEZXZI1rqxX 655 https://vine.co/v/iqMjlxULzbn,https://vine.co/v/iqMjlxULzbn 656 https://vine.co/v/5BYq6hmrEI3,https://vine.co/v/5BYq6hmrEI3 657 https://vine.co/v/ea0OwvPTx9l 672 https://vine.co/v/5wPT1aBxPQZ 676 https://twitter.com/sebscat/status/788818328538099712 682 https://vine.co/v/iEggaEOiLO3,https://vine.co/v/iEggaEOiLO3 692 https://vine.co/v/OEppMFbejFz,https://vine.co/v/OEppMFbejFz 699 https://vine.co/v/5XH0WqHwiFp 713 https://vine.co/v/5ghHLBMMdlV 714 https://vine.co/v/5gKxeUpuKEr 731 https://vine.co/v/5rt6T3qm7hL 733 https://vine.co/v/5rgu2Law2ut 746 https://vine.co/v/5nzYBpl0TY2 753 https://vine.co/v/hQJbaj1VpIz,https://vine.co/v/hQJbaj1VpIz 754 https://m.youtube.com/watch?v=idKxCMsS3FQ&feature=youtu.be 783 https://vine.co/v/ijmv0PD0XXD 807 https://twitter.com/yahoonews/status/771905568600719360 826 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/v/iXQAm5Lrgrh 881 https://vine.co/v/5ApKetxzmTB 885 https://weratedogs.com/pages/about-us,https://weratedogs.com/pages/about-us 886 https://vine.co/v/5AJm5pq7Kav 893 https://twitter.com/wsaznews/status/759167558763196416 905 https://vine.co/v/hQJbaj1VpIz 939 https://vine.co/v/5W2Dg3XPX7a 941 https://vine.co/v/OEppMFbejFz 943 https://vine.co/v/ibvnzrauFuV,https://vine.co/v/ibvnzrauFuV 946 https://vine.co/v/5W0bdhEUUVT 951 https://vine.co/v/5WrjaYAMvMO 954 https://vine.co/v/5W5YHdTJvaV 985 https://vine.co/v/5ztZvHgI17r 996 https://vine.co/v/h5aDaFthX6O 999 https://vine.co/v/iiLjKuYJpr6 1006 https://vine.co/v/iqIZFtOxEMB 1011 https://vine.co/v/5uTVXWvn3Ip 1020 https://vine.co/v/5BYq6hmrEI3 1022 https://vine.co/v/5uZYwqmuDeT 1033 https://vine.co/v/iQm3JAXuFmv 1040 https://twitter.com/strange_animals/status/672108316018024452 1051 https://vine.co/v/iLTZmtE1FTB 1062 https://vine.co/v/ixHYvdxUx1L 1075 https://vine.co/v/iY9Fr1I31U6 1095 https://vine.co/v/iEggaEOiLO3 1108 https://vine.co/v/iExiLXiiHvX 1146 https://vine.co/v/ixa1ejbXiM7 1154 https://twitter.com/foxdeportes/status/725136065078521856 1194 https://vine.co/v/iIhEU2lVqxz 1200 https://twitter.com/chpsanfrancisco/status/716637124322177024 1201 https://vine.co/v/eMmXVPn5eQK 1206 https://vine.co/v/hYdLVKDpAFu 1208 https://vine.co/v/ijAlDnuOD0l 1217 https://vine.co/v/inVtemLt9tE 1221 https://vine.co/v/iDrOvVqq0A6 1227 https://vine.co/v/iDWlapaXWmm 1237 https://twitter.com/stickergrub/status/709919141004595201 1255 https://vine.co/v/idaTpwH5TgU 1257 https://vine.co/v/iw9hUFAMerV 1275 https://vine.co/v/iwAjdlEjwMl 1278 https://vine.co/v/iHl2UDEBZ95 1286 https://vine.co/v/iHFqnjKVbIQ 1299 https://vine.co/v/hUvHKYrdb1d 1301 https://vine.co/v/iHhBOTl5p9z 1313 https://vine.co/v/iXQAm5Lrgrh 1324 https://twitter.com/wgnnews/status/706165920809492480 1326 https://vine.co/v/iXidJXBJ3P9 1349 https://vine.co/v/igW2OEwu9vg 1364 https://vine.co/v/i6iIrBwnTFI 1369 https://vine.co/v/irlDujgwOjd 1376 https://vine.co/v/ivV6Y37mH5Z 1409 https://vine.co/v/inlmMHxtqDD 1427 https://vine.co/v/in7ZzHPKzWz 1431 https://vine.co/v/i1LriMBmX6W 1443 https://vine.co/v/i1wrljBUjAu 1449 https://vine.co/v/i1KWj0vbvA9 1461 https://vine.co/v/iJvUqWQ166L 1466 https://vine.co/v/iJWKejYdLlh 1471 https://vine.co/v/i5ETazP5hrm 1482 https://vine.co/v/i5n2irFUYWv 1502 https://vine.co/v/iiI3wmqXYmA 1505 https://vine.co/v/OTTVAKw6YlW 1515 https://vine.co/v/iOZKZEU2nHq 1528 https://vine.co/v/iejBWerY9X2 1534 https://vine.co/v/ienexVMZgi5 1549 https://vine.co/v/iOL792n5hz2 1566 https://vine.co/v/iOWwUPH1hrw 1570 https://vine.co/v/iOuMphL5DBY 1577 https://vine.co/v/iM2hLu9LU5i 1586 https://vine.co/v/iMvubwT260D 1592 https://vine.co/v/iMqBebnOvav 1596 https://vine.co/v/iMZx6aDbExn 1625 https://vine.co/v/eEZXZI1rqxX 1628 https://vine.co/v/ihWIxntjtO7 1640 https://vine.co/v/ib2nTOEuuOI 1650 https://vine.co/v/ibvnzrauFuV 1676 https://vine.co/v/iqMjlxULzbn 1706 https://vine.co/v/iAP0Ugzi2PO 1728 https://vine.co/v/iAAxTbj1UAM 1743 https://vine.co/v/iKVFEigMLxP 1750 https://vine.co/v/iKIwAzEatd6 1760 https://vine.co/v/eQjxxYaQ60K 1776 https://vine.co/v/iKuMDuYV0aZ 1791 https://vine.co/v/hbLbH77Ar67 1807 https://vine.co/v/imJ0BdZOJTw 1818 https://vine.co/v/eEQQaPFbgOY 1834 https://vine.co/v/iZXg7VpeDAv 1916 https://vine.co/v/i7nWzrenw5h 2212 https://vine.co/v/ea0OwvPTx9l Name: expanded_urls, dtype: object
I am not sure to what exactly these URLs relate. Let's check how many of such results we have in the column to decide if it should concern us in this project.
#check how many urls which do not contain 'photo', 'video' and are not null we have
num_urls = len(filtered_urls)
num_urls
138
#check how many urls (no null) we have in the column in genera
total_urls = len(x_archive[x_archive['expanded_urls'].notnull()])
total_urls
2297
# Calculate the percentage for those records that do not contain 'photo' or 'video' and are not null
percentage_filtered = (num_urls / total_urls) * 100
percentage_filtered
6.007836308228123
The urls related to something different than photo or video makes 6% of total, so it is realtively small. For this project, we will keep this column as it is. We will just remove rows with null values for clarity. Let's check how many null values is in the column.
#number of null values in x_archive expanded_urls column
null_count_expanded_urls = x_archive['expanded_urls'].isnull().sum()
null_count_expanded_urls
59
We will need to remove the rows with missing values though
As inconsistences has been noticed in visual assessment, we will check for common values in x_archive 'name' column
#value count for x_archive
x_archive['name'].value_counts()
None 745 a 55 Charlie 12 Cooper 11 Lucy 11 Oliver 11 Tucker 10 Penny 10 Lola 10 Winston 9 Bo 9 Sadie 8 the 8 Daisy 7 Buddy 7 Toby 7 an 7 Bailey 7 Leo 6 Oscar 6 Stanley 6 Rusty 6 Bella 6 Dave 6 Jack 6 Koda 6 Scout 6 Jax 6 Milo 6 Louis 5 Phil 5 Sammy 5 Gus 5 Chester 5 Alfie 5 Sunny 5 Bentley 5 very 5 Oakley 5 Finn 5 George 5 Larry 5 Clarence 4 Loki 4 Walter 4 Reggie 4 Hank 4 Scooter 4 Duke 4 quite 4 Reginald 4 Maggie 4 Luna 4 Maddie 4 Dexter 4 Jerry 4 Carl 4 Ruby 4 Riley 4 Clark 4 Chip 4 Brody 4 just 4 Sophie 4 Sampson 4 Boomer 4 Winnie 4 Gary 4 Archie 4 Jeffrey 4 Gerald 4 one 4 Cassie 4 Maximus 4 Moose 4 Bear 4 Bruce 4 Beau 4 Derek 4 Shadow 4 Rory 3 Waffles 3 Earl 3 Nala 3 Louie 3 Colby 3 Otis 3 Doug 3 Rosie 3 Wyatt 3 Lily 3 Coco 3 Kyle 3 Olive 3 Peaches 3 Vincent 3 Reese 3 Jimothy 3 Frankie 3 Ted 3 Arnie 3 Klevin 3 Max 3 Zoey 3 Ellie 3 Zeke 3 Wilson 3 Calvin 3 Sebastian 3 Wallace 3 Lorenzo 3 Malcolm 3 Mia 3 Samson 3 Paisley 3 Steven 3 Gizmo 3 Benji 2 Philbert 2 Django 2 Sansa 2 Tyr 2 Moe 2 Misty 2 Herm 2 Cali 2 Kenneth 2 Chelsea 2 Happy 2 Ollie 2 Leela 2 Sam 2 Hunter 2 Seamus 2 Tyrone 2 Atlas 2 Rocky 2 Oshie 2 Olivia 2 Davey 2 Timison 2 Paull 2 Titan 2 Levi 2 Layla 2 Stubert 2 Rizzy 2 Baloo 2 Betty 2 Herschel 2 Butter 2 Mister 2 Lenny 2 Doc 2 Juno 2 Anakin 2 Bernie 2 Marley 2 Phineas 2 Nollie 2 Meyer 2 Blitz 2 Raymond 2 Crystal 2 Phred 2 Terry 2 Axel 2 Charles 2 Herald 2 getting 2 Theodore 2 Maxaroni 2 Kilo 2 Brad 2 actually 2 Sugar 2 Percy 2 Opal 2 Shaggy 2 Wally 2 Oliviér 2 mad 2 Kreggory 2 Remington 2 Bisquick 2 Chuckles 2 Thumas 2 Curtis 2 Calbert 2 Chet 2 Bubbles 2 Coops 2 Ozzy 2 Smokey 2 Flávio 2 CeCe 2 Pippa 2 Panda 2 Bob 2 Sarge 2 Abby 2 Keurig 2 Baxter 2 Atticus 2 Dakota 2 Gromit 2 Roosevelt 2 Fizz 2 Penelope 2 Finley 2 Solomon 2 Hurley 2 Bell 2 Dash 2 Linda 2 Chipson 2 Harper 2 Kenny 2 Sandy 2 Lincoln 2 Frank 2 Jackson 2 Kirby 2 Lou 2 Jeph 2 Piper 2 Hammond 2 Fred 2 Carly 2 Keith 2 Rubio 2 Watson 2 Chompsky 2 Rufus 2 Jiminy 2 Griffin 2 Rocco 2 Albert 2 Patrick 2 Kreg 2 Eve 2 Luca 2 Lennon 2 Cupcake 2 Emmy 2 Ken 2 Pipsy 2 Nelly 2 Odie 2 Ava 2 Ash 2 Terrance 2 not 2 Romeo 2 Stephan 2 Jesse 2 Elliot 2 Logan 2 Moreton 2 Klein 2 Kyro 2 Fiona 2 Yogi 2 Indie 2 Benedict 2 Lilly 2 Churlie 2 Hobbes 2 Trooper 2 Belle 2 Quinn 2 Neptune 2 Albus 2 Alice 2 Aspen 2 Jamesy 2 Bungalo 2 Harold 2 Astrid 2 Gidget 2 Cody 2 Dawn 2 Sierra 2 Cash 2 Pickles 2 Kevin 2 Eli 2 Gabe 2 Balto 2 Pablo 2 Franklin 2 Jimison 2 Hercules 2 Canela 2 Mattie 2 Dotsy 1 Marvin 1 Lizzie 1 Kallie 1 Ember 1 Frönq 1 Blakely 1 Jockson 1 Ambrose 1 Jomathan 1 Marq 1 Kramer 1 Maks 1 Derby 1 Pubert 1 Spark 1 Ferg 1 Ricky 1 Carll 1 Ron 1 Torque 1 Lucky 1 Terrenth 1 Trip 1 Gordon 1 Jareld 1 Bode 1 DayZ 1 Jo 1 Hamrick 1 Gòrdón 1 Barry 1 Horace 1 Timofy 1 Kulet 1 Perry 1 Bobby 1 Winifred 1 Obi 1 Kevon 1 Tino 1 Sweets 1 Bruiser 1 Lupe 1 Tiger 1 Lugan 1 Kathmandu 1 Banditt 1 Banjo 1 Katie 1 Oreo 1 Mona 1 Adele 1 Fynn 1 Zara 1 Crimson 1 Birf 1 Josep 1 Zeek 1 Lorelei 1 Gerbald 1 Marty 1 Brooks 1 Petrick 1 Hubertson 1 Hanz 1 Kara 1 Skittles 1 Chesterson 1 Biden 1 Naphaniel 1 Ole 1 Pherb 1 Blipson 1 Genevieve 1 Reptar 1 Trevith 1 Joshwa 1 Millie 1 Kial 1 Berb 1 Bradlay 1 Colin 1 Brian 1 Yoda 1 Coopson 1 Carter 1 Dook 1 Grady 1 Jessiga 1 Eazy 1 Murphy 1 Kaia 1 Fillup 1 Miley 1 Daniel 1 Philippe 1 Charl 1 Reagan 1 Yukon 1 Crouton 1 Hall 1 Fwed 1 Cuddles 1 Claude 1 Filup 1 Kobe 1 Durg 1 Vinscent 1 Hazel 1 Lolo 1 Eriq 1 Erik 1 Rudy 1 Rambo 1 Cleopatricia 1 Oddie 1 Socks 1 Maxwell 1 Ralphson 1 Keet 1 Geoff 1 Covach 1 Lucia 1 Cedrick 1 Stu 1 Bilbo 1 Fiji 1 Rilo 1 Freddery 1 Bodie 1 Dunkin 1 Tedrick 1 Tupawc 1 Clybe 1 Amber 1 Edgar 1 Teddy 1 Kingsley 1 Brockly 1 Richie 1 Brandy 1 Molly 1 Bobb 1 Patch 1 Lulu 1 Finnegus 1 Henry 1 Bobbay 1 Mitch 1 Creg 1 Antony 1 Trigger 1 Kaiya 1 Acro 1 Mason 1 Arnold 1 Andy 1 Aiden 1 Sage 1 Obie 1 Amy 1 Jett 1 Dot 1 Shnuggles 1 life 1 Chesney 1 Traviss 1 Jonah 1 Damon 1 Herb 1 Willy 1 Mollie 1 Edd 1 Laela 1 Bloo 1 Pluto 1 Ester 1 Danny 1 Tedders 1 Jeffrie 1 Superpup 1 Rufio 1 Gin 1 Jeb 1 Rodman 1 Kendall 1 Holly 1 Jeffri 1 Norman 1 Scott 1 Dylan 1 Taz 1 Darby 1 Jackie 1 light 1 Jazz 1 Franq 1 Pippin 1 Rolf 1 Batdog 1 Snickers 1 Ridley 1 Cal 1 Bradley 1 Bubba 1 Mojo 1 Caryl 1 Leonidas 1 Steve 1 space 1 Mac 1 Fletcher 1 Anthony 1 Kenzie 1 Sparky 1 Tanner 1 Pumpkin 1 Julius 1 Schnozz 1 Gustaf 1 Pip 1 Scruffers 1 Cheryl 1 Alejandro 1 JD 1 Ed 1 Mark 1 Zuzu 1 Buddah 1 Darrel 1 Kirk 1 Cheesy 1 Moofasa 1 Jaspers 1 Hector 1 Goliath 1 Clarq 1 Kawhi 1 Ralf 1 by 1 Peanut 1 Sully 1 Emmie 1 Tessa 1 Willie 1 Dug 1 Rinna 1 Mike 1 William 1 Samsom 1 Harrison 1 Griswold 1 Ozzie 1 Amélie 1 Taco 1 Joey 1 Ruffles 1 Lambeau 1 Todo 1 Tess 1 Ulysses 1 Toffee 1 Apollo 1 Tuco 1 Jaycob 1 Glacier 1 Chuck 1 Jeremy 1 Champ 1 Chaz 1 Saydee 1 Dwight 1 Billl 1 Humphrey 1 Tommy 1 Juckson 1 Liam 1 Randall 1 Chuq 1 Tyrus 1 Karl 1 Godzilla 1 Fabio 1 Vinnie 1 Sandra 1 Bert 1 Striker 1 Donny 1 Butters 1 Pepper 1 Nigel 1 Tassy 1 Ben 1 Evy 1 Ralph 1 officially 1 Rascal 1 Ronduh 1 Kollin 1 Skye 1 Shawwn 1 Kloey 1 Andru 1 Tug 1 Tango 1 Julio 1 Grizz 1 Jerome 1 Crumpet 1 Jessifer 1 Raphael 1 Izzy 1 Asher 1 Huxley 1 Clarkus 1 Autumn 1 Sundance 1 Flash 1 Howie 1 Jazzy 1 Anna 1 Wafer 1 Tom 1 Florence 1 Dido 1 Duchess 1 Eugene 1 Strudel 1 Tebow 1 Chloe 1 Timber 1 Binky 1 Dudley 1 Comet 1 Harlso 1 Crawford 1 Smiley 1 Sailer 1 Emanuel 1 Kuyu 1 Dutch 1 Pete 1 Mutt 1 Doobert 1 Beebop 1 Alexander 1 Brutus 1 Sweet 1 Kona 1 Boots 1 Ralphie 1 Cupid 1 Pawnd 1 Pilot 1 Ike 1 Mo 1 Akumi 1 Alf 1 Chubbs 1 Dobby 1 Sobe 1 Longfellow 1 Iroh 1 Pancake 1 Snicku 1 Mack 1 Nimbus 1 Laika 1 Maude 1 Sky 1 Newt 1 Nida 1 Robin 1 Monster 1 BeBe 1 Remus 1 Mabel 1 Mosby 1 Chef 1 Mauve 1 Bones 1 Ronnie 1 Eleanor 1 Baron 1 Bauer 1 Swagger 1 Brandi 1 Mary 1 Halo 1 Augie 1 Craig 1 Pavlov 1 Ito 1 incredibly 1 Major 1 Shooter 1 Diogi 1 Sonny 1 Severus 1 Miguel 1 Eevee 1 Brownie 1 Napolean 1 Goose 1 Nugget 1 Jed 1 Monkey 1 Harry 1 Kody 1 Lassie 1 Rover 1 Rumble 1 Ginger 1 Clifford 1 Dewey 1 Shikha 1 Lili 1 Meatball 1 Zooey 1 Jersey 1 Burt 1 Venti 1 Dante 1 Orion 1 Roscoe 1 Darla 1 Bruno 1 Stuart 1 Jim 1 Ralphus 1 such 1 Maya 1 Mingus 1 Jimbo 1 Aja 1 Maisey 1 Noah 1 Grizzwald 1 Alfy 1 Koko 1 Rey 1 Duddles 1 Snoopy 1 Jordy 1 Milky 1 Thor 1 Mookie 1 Jarvis 1 Mimosa 1 Brady 1 Margo 1 Tycho 1 Monty 1 Sojourner 1 Arlo 1 Meera 1 Callie 1 Tobi 1 Sunshine 1 Lipton 1 Gabby 1 Bronte 1 Poppy 1 Rhino 1 Willow 1 Vixen 1 Barney 1 Tuck 1 Furzey 1 Cermet 1 Marlee 1 Arya 1 Einstein 1 Rumpole 1 Benny 1 Jarod 1 Wiggles 1 General 1 Sailor 1 Iggy 1 Snoop 1 Noosh 1 Odin 1 Georgie 1 Rontu 1 Cannon 1 Ralphy 1 Stella 1 Jiminus 1 Lillie 1 Coleman 1 Enchilada 1 all 1 Rueben 1 Cilantro 1 Karll 1 Sprout 1 Bloop 1 Ashleigh 1 Puff 1 Luther 1 Ivar 1 Jangle 1 Schnitzel 1 Berkeley 1 Ralphé 1 Charleson 1 Clyde 1 Flurpson 1 Pupcasso 1 Kayla 1 Kellogg 1 Aqua 1 Chase 1 Rorie 1 Simba 1 Bayley 1 Storkson 1 Remy 1 Chadrick 1 Buckley 1 Stefan 1 Livvie 1 Hermione 1 Ralpher 1 Aldrick 1 this 1 unacceptable 1 Rooney 1 Ziva 1 Harnold 1 Sid 1 Carper 1 Vince 1 Sora 1 Beemo 1 Gunner 1 infuriating 1 Lacy 1 Tater 1 Olaf 1 Cecil 1 Karma 1 Bowie 1 Billy 1 Walker 1 Rodney 1 Malikai 1 Bobble 1 River 1 Jebberson 1 Farfle 1 Staniel 1 Kane 1 Opie 1 Lance 1 Alexanderson 1 Suki 1 Barclay 1 Skittle 1 Ebby 1 Link 1 Jennifur 1 Bluebert 1 Stephanus 1 old 1 Zeus 1 Bertson 1 Nico 1 Michelangelope 1 Siba 1 Travis 1 Kanu 1 Edmund 1 Beya 1 Tonks 1 Rupert 1 Grey 1 Willem 1 Dixie 1 Al 1 Carbon 1 DonDon 1 Chevy 1 Tito 1 Brudge 1 Heinrich 1 Shadoe 1 Angel 1 Brat 1 Tove 1 my 1 Aubie 1 Kota 1 Glenn 1 Shakespeare 1 Sprinkles 1 Stark 1 Godi 1 Dale 1 Rizzo 1 Pinot 1 Dallas 1 Hero 1 Stormy 1 Mairi 1 Loomis 1 Deacon 1 Blue 1 Timmy 1 Combo 1 Jay 1 Mya 1 Strider 1 Wesley 1 Huck 1 O 1 Shelby 1 Sephie 1 Bonaparte 1 Tilly 1 Spanky 1 Jameson 1 Blu 1 Dietrich 1 Divine 1 Tripp 1 his 1 Cora 1 Bookstore 1 Wishes 1 Linus 1 Shiloh 1 Gustav 1 Arlen 1 Lenox 1 Harvey 1 Blanket 1 Geno 1 Lilah 1 Stewie 1 Zoe 1 Gilbert 1 Rose 1 Theo 1 Fido 1 Emma 1 Spencer 1 Lilli 1 Boston 1 Brandonald 1 Corey 1 Leonard 1 Beckham 1 Devón 1 Gert 1 Dex 1 Ace 1 Tayzie 1 Grizzie 1 Christoper 1 Name: name, dtype: int64
For the Assessment Summary:
None should be replaced by NaN for clarity (even if there is a small chance that people name their dog 'NONE' ;))
The names should start with a upper case so let's check if there are values in 'name' column starting with a lower case
#find and count the values starting with the lowercase as there is a high possibilty that these won't be names
#I will use Python's regular expression RegEx (based on Stackoverflow advice:
#https://stackoverflow.com/questions/18307551/regex-pattern-to-find-all-lowercase-words
#and the Datacamp Cheat Sheet)
x_archive[x_archive['name'].str.contains(r'^[^A-Z].*$')]['name'].value_counts()
a 55 the 8 an 7 very 5 just 4 quite 4 one 4 getting 2 actually 2 mad 2 not 2 old 1 life 1 officially 1 light 1 by 1 infuriating 1 such 1 all 1 unacceptable 1 this 1 his 1 my 1 incredibly 1 space 1 Name: name, dtype: int64
For the Asssessment Summary: This finding could be investigated more deeply, but for the needs of this project, it is safe to conclude that these values are not valid as names
We will check if there are duplicated values in x_archive
#check for duplicated values
sum(x_archive.duplicated())
0
We will check for tendencies and shape of dataset distribution.
#check for tendencies and shape of dataset distribution.
#I'll keep in mind that, as advised by Udacity,the fact that the rating numerators are greater than the denominators
#does not need to be cleaned and that this unique rating system is a big part of the popularity of WeRateDogs.
x_archive.describe()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | retweeted_status_id | retweeted_status_user_id | rating_numerator | rating_denominator | |
|---|---|---|---|---|---|---|---|
| count | 2.356000e+03 | 7.800000e+01 | 7.800000e+01 | 1.810000e+02 | 1.810000e+02 | 2356.000000 | 2356.000000 |
| mean | 7.427716e+17 | 7.455079e+17 | 2.014171e+16 | 7.720400e+17 | 1.241698e+16 | 13.126486 | 10.455433 |
| std | 6.856705e+16 | 7.582492e+16 | 1.252797e+17 | 6.236928e+16 | 9.599254e+16 | 45.876648 | 6.745237 |
| min | 6.660209e+17 | 6.658147e+17 | 1.185634e+07 | 6.661041e+17 | 7.832140e+05 | 0.000000 | 0.000000 |
| 25% | 6.783989e+17 | 6.757419e+17 | 3.086374e+08 | 7.186315e+17 | 4.196984e+09 | 10.000000 | 10.000000 |
| 50% | 7.196279e+17 | 7.038708e+17 | 4.196984e+09 | 7.804657e+17 | 4.196984e+09 | 11.000000 | 10.000000 |
| 75% | 7.993373e+17 | 8.257804e+17 | 4.196984e+09 | 8.203146e+17 | 4.196984e+09 | 12.000000 | 10.000000 |
| max | 8.924206e+17 | 8.862664e+17 | 8.405479e+17 | 8.874740e+17 | 7.874618e+17 | 1776.000000 | 170.000000 |
2.Predictions assessment:
We will start with info() and then: check for duplicated values and check the data distribution using describe()
predictions.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2075 entries, 0 to 2074 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2075 non-null int64 1 jpg_url 2075 non-null object 2 img_num 2075 non-null int64 3 p1 2075 non-null object 4 p1_conf 2075 non-null float64 5 p1_dog 2075 non-null bool 6 p2 2075 non-null object 7 p2_conf 2075 non-null float64 8 p2_dog 2075 non-null bool 9 p3 2075 non-null object 10 p3_conf 2075 non-null float64 11 p3_dog 2075 non-null bool dtypes: bool(3), float64(3), int64(2), object(4) memory usage: 152.1+ KB
No null values datatypes are correct
#check for null values, just to be sure
predictions.isnull().sum()
tweet_id 0 jpg_url 0 img_num 0 p1 0 p1_conf 0 p1_dog 0 p2 0 p2_conf 0 p2_dog 0 p3 0 p3_conf 0 p3_dog 0 dtype: int64
#check for duplicated values
sum(predictions.duplicated())
0
#check for any duplicated tweet_id, and jpg_url, which are the images being used for the predictions
sum(predictions.duplicated('tweet_id'))
0
sum(predictions.duplicated('jpg_url'))
66
The most possible explanation for the duplicted jpg_url is that these are retweets Let's check the number of retweets between the duplicated urls
#check the number of retweets between the duplicated urls
duplicated_jpg_url = predictions[predictions.duplicated('jpg_url')]['tweet_id']
x_archive.query('tweet_id in @duplicated_jpg_url')['retweeted_status_id'].count()
66
For the Assessment Summary: as assumed initially, the duplicated jpg_url should be removed from the predictions table
#check the data distribution
predictions.describe()
| tweet_id | img_num | p1_conf | p2_conf | p3_conf | |
|---|---|---|---|---|---|
| count | 2.075000e+03 | 2075.000000 | 2075.000000 | 2.075000e+03 | 2.075000e+03 |
| mean | 7.384514e+17 | 1.203855 | 0.594548 | 1.345886e-01 | 6.032417e-02 |
| std | 6.785203e+16 | 0.561875 | 0.271174 | 1.006657e-01 | 5.090593e-02 |
| min | 6.660209e+17 | 1.000000 | 0.044333 | 1.011300e-08 | 1.740170e-10 |
| 25% | 6.764835e+17 | 1.000000 | 0.364412 | 5.388625e-02 | 1.622240e-02 |
| 50% | 7.119988e+17 | 1.000000 | 0.588230 | 1.181810e-01 | 4.944380e-02 |
| 75% | 7.932034e+17 | 1.000000 | 0.843855 | 1.955655e-01 | 9.180755e-02 |
| max | 8.924206e+17 | 4.000000 | 1.000000 | 4.880140e-01 | 2.734190e-01 |
The result looks normal
I assume that at least one of the three predictions needs to be 'dog'. Otherwise, the record has no value for this analysis
#Check for the records where all three predictions are NOT 'dog'
predictions.query('p1_dog==False & p2_dog==False & p3_dog==False')
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/676776408941662209/pu/img/k-6I3YEZAQtYPBXR.jpg | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/680440290977693696/pu/img/B900g7b-n-zhnwi5.jpg | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/689289176076959744/pu/img/hEFkFtmMu_hkTlxK.jpg | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/695064251149508610/pu/img/0OPED0aUurb9Z16a.jpg | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/729838572744912896/pu/img/RIl-XYmRxW-YLFSV.jpg | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/737310236135043073/pu/img/_lG4DXmH-_XEq7Rc.jpg | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/743509040018268160/pu/img/Ol2OgO5f8ciUp80r.jpg | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/748704826305970176/pu/img/QHuadM5eEygfBeOf.jpg | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/753420390836346880/pu/img/ZHLvYxSHYuQK3uXi.jpg | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/754481405627957248/pu/img/YY1eBDOlP9QFC4Bj.jpg | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/762035577168560129/pu/img/kD4TeHRRiSKgOyDx.jpg | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/779377444025499652/pu/img/eIiLDy9F6rPNarEc.jpg | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/800018199223959552/pu/img/3Qp73edtkZO-qWPy.jpg | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
For Assessment Summary: we should probably remove these records
Based on earlier visual assessment, I will have a closer look on dashes and underscores in p1, p2 and p3 columns.
#check for records with underscores and dashes
predictions[predictions['p1'].str.contains('-')]
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 0.015250 | False | great_grey_owl | 0.013207 | False |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | soft-coated_wheaten_terrier | 0.326467 | True | Afghan_hound | 0.259551 | True | briard | 0.206803 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 0.244220 | True | flat-coated_retriever | 0.173810 | True |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | curly-coated_retriever | 0.322084 | True | giant_schnauzer | 0.287955 | True | Labrador_retriever | 0.166331 | True |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | soft-coated_wheaten_terrier | 0.318981 | True | Lakeland_terrier | 0.215218 | True | toy_poodle | 0.106014 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 0.262239 | True | curly-coated_retriever | 0.048920 | True |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | soft-coated_wheaten_terrier | 0.406374 | True | Lakeland_terrier | 0.263854 | True | toy_poodle | 0.150844 | True |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | Shih-Tzu | 0.985649 | True | Lhasa | 0.007078 | True | Pekinese | 0.003053 | True |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | German_short-haired_pointer | 0.273492 | True | Staffordshire_bullterrier | 0.132944 | True | bluetick | 0.124562 | True |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 0.000018 | False | racket | 0.000015 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 0.027351 | True | Labrador_retriever | 0.020081 | True |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | Shih-Tzu | 0.963622 | True | Lhasa | 0.016017 | True | guinea_pig | 0.007932 | False |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | Shih-Tzu | 0.180380 | True | golden_retriever | 0.180194 | True | Labrador_retriever | 0.173656 | True |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | Shih-Tzu | 0.610453 | True | Maltese_dog | 0.166815 | True | Old_English_sheepdog | 0.132015 | True |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | soft-coated_wheaten_terrier | 0.340806 | True | Sealyham_terrier | 0.234898 | True | kuvasz | 0.203495 | True |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | Shih-Tzu | 0.165383 | True | Lhasa | 0.116977 | True | Yorkshire_terrier | 0.063899 | True |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | German_short-haired_pointer | 0.935771 | True | kelpie | 0.022561 | True | Labrador_retriever | 0.008847 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 0.115984 | True | miniature_pinscher | 0.052175 | True |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 0.160580 | False | three-toed_sloth | 0.132154 | False |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | flat-coated_retriever | 0.837448 | True | groenendael | 0.086166 | True | Labrador_retriever | 0.016052 | True |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | Shih-Tzu | 0.225848 | True | Norfolk_terrier | 0.186873 | True | Irish_terrier | 0.106987 | True |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 0.154630 | False | weasel | 0.097626 | False |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | Shih-Tzu | 0.916645 | True | Lhasa | 0.057883 | True | Pekinese | 0.020126 | True |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | soft-coated_wheaten_terrier | 0.289598 | True | West_Highland_white_terrier | 0.157195 | True | toy_poodle | 0.074435 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 0.315286 | True | Great_Dane | 0.062179 | True |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | soft-coated_wheaten_terrier | 0.791182 | True | cocker_spaniel | 0.072444 | True | teddy | 0.071486 | False |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | Shih-Tzu | 0.747208 | True | Maltese_dog | 0.091025 | True | Lhasa | 0.035788 | True |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | German_short-haired_pointer | 0.876977 | True | bluetick | 0.036615 | True | basset | 0.017848 | True |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | soft-coated_wheaten_terrier | 0.403496 | True | cocker_spaniel | 0.135164 | True | golden_retriever | 0.088719 | True |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | Shih-Tzu | 0.697480 | True | Lhasa | 0.200151 | True | Tibetan_terrier | 0.090970 | True |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | Shih-Tzu | 0.352547 | True | toy_poodle | 0.155720 | True | Maltese_dog | 0.116657 | True |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | Shih-Tzu | 0.510106 | True | Tibetan_terrier | 0.071981 | True | Lhasa | 0.069231 | True |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | soft-coated_wheaten_terrier | 0.805139 | True | Lakeland_terrier | 0.121662 | True | Afghan_hound | 0.023303 | True |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 0.005558 | True | curly-coated_retriever | 0.003322 | True |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg | 1 | Shih-Tzu | 0.599587 | True | Pekinese | 0.213069 | True | Maltese_dog | 0.154293 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 0.189312 | False | pillow | 0.029409 | False |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | Shih-Tzu | 0.218479 | True | Lhasa | 0.201966 | True | Norfolk_terrier | 0.165225 | True |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | Shih-Tzu | 0.932401 | True | Lhasa | 0.030806 | True | Tibetan_terrier | 0.008974 | True |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | soft-coated_wheaten_terrier | 0.948617 | True | Dandie_Dinmont | 0.018664 | True | cairn | 0.015943 | True |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | Shih-Tzu | 0.625129 | True | Tibetan_terrier | 0.126897 | True | Lhasa | 0.119663 | True |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | soft-coated_wheaten_terrier | 0.751962 | True | Bedlington_terrier | 0.175652 | True | Great_Pyrenees | 0.011452 | True |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | German_short-haired_pointer | 0.835491 | True | bluetick | 0.058788 | True | English_setter | 0.037208 | True |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | soft-coated_wheaten_terrier | 0.515919 | True | Irish_terrier | 0.162655 | True | Chesapeake_Bay_retriever | 0.125182 | True |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | flat-coated_retriever | 0.656463 | True | Great_Dane | 0.084766 | True | Labrador_retriever | 0.058909 | True |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | German_short-haired_pointer | 0.742216 | True | bluetick | 0.152810 | True | English_setter | 0.051835 | True |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 0.019522 | True | Samoyed | 0.006396 | True |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg | 1 | wire-haired_fox_terrier | 0.155144 | True | Lakeland_terrier | 0.108382 | True | buckeye | 0.074617 | False |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | Shih-Tzu | 0.814405 | True | Lhasa | 0.175220 | True | Pekinese | 0.008072 | True |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 0.029473 | False | rhinoceros_beetle | 0.027806 | False |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 0.000113 | False | standard_poodle | 0.000083 | True |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | wire-haired_fox_terrier | 0.456047 | True | Lakeland_terrier | 0.273428 | True | English_springer | 0.083643 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 0.082318 | True | curly-coated_retriever | 0.067461 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 0.214145 | True | Irish_water_spaniel | 0.029769 | True |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | flat-coated_retriever | 0.823648 | True | Newfoundland | 0.100571 | True | groenendael | 0.038310 | True |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | black-and-tan_coonhound | 0.854861 | True | Doberman | 0.050792 | True | bluetick | 0.021762 | True |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | flat-coated_retriever | 0.321676 | True | Labrador_retriever | 0.115138 | True | groenendael | 0.096100 | True |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 0.306407 | True | curly-coated_retriever | 0.061314 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 0.040437 | True | Newfoundland | 0.028228 | True |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | German_short-haired_pointer | 0.479896 | True | vizsla | 0.124353 | True | bath_towel | 0.073320 | False |
predictions[predictions['p2'].str.contains('-')]
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | Lhasa | 0.582330 | True | Shih-Tzu | 0.166192 | True | Dandie_Dinmont | 0.089688 | True |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | Pekinese | 0.589011 | True | Shih-Tzu | 0.390987 | True | Japanese_spaniel | 0.003310 | True |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | Labrador_retriever | 0.367818 | True | German_short-haired_pointer | 0.280642 | True | Chesapeake_Bay_retriever | 0.184246 | True |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | Labrador_retriever | 0.947453 | True | German_short-haired_pointer | 0.017001 | True | Weimaraner | 0.015432 | True |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | Rottweiler | 0.781201 | True | black-and-tan_coonhound | 0.061206 | True | kelpie | 0.048856 | True |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | Lakeland_terrier | 0.428275 | True | wire-haired_fox_terrier | 0.111472 | True | toy_poodle | 0.105016 | True |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | Doberman | 0.782626 | True | black-and-tan_coonhound | 0.109678 | True | Gordon_setter | 0.052110 | True |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | Gordon_setter | 0.469373 | True | black-and-tan_coonhound | 0.270893 | True | Rottweiler | 0.153233 | True |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 0.048928 | True | Siberian_husky | 0.030386 | True |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 0.105416 | True | Lhasa | 0.072832 | True |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | Dandie_Dinmont | 0.175915 | True | black-footed_ferret | 0.096534 | False | toy_poodle | 0.064145 | True |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | English_setter | 0.282396 | True | Shih-Tzu | 0.084112 | True | Old_English_sheepdog | 0.059538 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 0.249017 | True | Pekinese | 0.209213 | True |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | Labrador_retriever | 0.338757 | True | flat-coated_retriever | 0.304470 | True | chest | 0.093392 | False |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | Chihuahua | 0.761972 | True | black-footed_ferret | 0.150605 | False | squirrel_monkey | 0.028148 | False |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 0.121811 | True | bubble | 0.117820 | False |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | Lhasa | 0.482401 | True | Shih-Tzu | 0.113672 | True | Pomeranian | 0.096229 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 0.315286 | True | Great_Dane | 0.062179 | True |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | cocker_spaniel | 0.901392 | True | soft-coated_wheaten_terrier | 0.028605 | True | miniature_schnauzer | 0.017805 | True |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | Lakeland_terrier | 0.303512 | True | soft-coated_wheaten_terrier | 0.211424 | True | golden_retriever | 0.170725 | True |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | Labrador_retriever | 0.627856 | True | German_short-haired_pointer | 0.173675 | True | Chesapeake_Bay_retriever | 0.041342 | True |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | Pembroke | 0.508498 | True | black-footed_ferret | 0.115532 | False | weasel | 0.051280 | False |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | Lakeland_terrier | 0.873029 | True | soft-coated_wheaten_terrier | 0.060924 | True | toy_poodle | 0.017031 | True |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg | 1 | bannister | 0.369449 | False | four-poster | 0.105307 | False | shoji | 0.098767 | False |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | bloodhound | 0.886232 | True | black-and-tan_coonhound | 0.077420 | True | Gordon_setter | 0.009826 | True |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | Lhasa | 0.521931 | True | Shih-Tzu | 0.403451 | True | Tibetan_terrier | 0.039912 | True |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | Pomeranian | 0.714367 | True | Shih-Tzu | 0.040574 | True | silky_terrier | 0.032510 | True |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | Norfolk_terrier | 0.689504 | True | soft-coated_wheaten_terrier | 0.101480 | True | Norwich_terrier | 0.055778 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 0.201566 | True | black-footed_ferret | 0.101559 | False |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 0.052695 | True | Labrador_retriever | 0.018477 | True |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | borzoi | 0.490783 | True | wire-haired_fox_terrier | 0.083513 | True | English_setter | 0.083184 | True |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | Old_English_sheepdog | 0.586307 | True | wire-haired_fox_terrier | 0.118622 | True | Lakeland_terrier | 0.106806 | True |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | West_Highland_white_terrier | 0.597111 | True | soft-coated_wheaten_terrier | 0.142993 | True | Lakeland_terrier | 0.136712 | True |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | Labrador_retriever | 0.584580 | True | German_short-haired_pointer | 0.340657 | True | Chesapeake_Bay_retriever | 0.031975 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 0.050971 | True | Tibetan_terrier | 0.047759 | True |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | Rottweiler | 0.990312 | True | black-and-tan_coonhound | 0.002495 | True | American_black_bear | 0.001733 | False |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | Lhasa | 0.457356 | True | Shih-Tzu | 0.371282 | True | Tibetan_terrier | 0.048359 | True |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 0.007942 | False | quilt | 0.006302 | False |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | Labrador_retriever | 0.786089 | True | flat-coated_retriever | 0.048652 | True | Chesapeake_Bay_retriever | 0.034693 | True |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | kuvasz | 0.350629 | True | soft-coated_wheaten_terrier | 0.182782 | True | golden_retriever | 0.087662 | True |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | Old_English_sheepdog | 0.427481 | True | Shih-Tzu | 0.146336 | True | Tibetan_terrier | 0.134269 | True |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | Pekinese | 0.984267 | True | Shih-Tzu | 0.008942 | True | cocker_spaniel | 0.001928 | True |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | borzoi | 0.742912 | True | wire-haired_fox_terrier | 0.204082 | True | English_setter | 0.021032 | True |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | Chesapeake_Bay_retriever | 0.694541 | True | curly-coated_retriever | 0.076335 | True | Irish_water_spaniel | 0.048550 | True |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg | 1 | Walker_hound | 0.178852 | True | German_short-haired_pointer | 0.115752 | True | English_foxhound | 0.113796 | True |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | Blenheim_spaniel | 0.427766 | True | Shih-Tzu | 0.219256 | True | Welsh_springer_spaniel | 0.144614 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 0.002139 | False | menu | 0.002115 | False |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | Rottweiler | 0.502228 | True | black-and-tan_coonhound | 0.154594 | True | bloodhound | 0.135176 | True |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | toy_poodle | 0.431080 | True | soft-coated_wheaten_terrier | 0.060365 | True | cocker_spaniel | 0.059845 | True |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | briard | 0.504427 | True | soft-coated_wheaten_terrier | 0.390678 | True | Lhasa | 0.034596 | True |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | miniature_pinscher | 0.436023 | True | black-and-tan_coonhound | 0.258049 | True | Rottweiler | 0.145231 | True |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | cocker_spaniel | 0.349195 | True | flat-coated_retriever | 0.309535 | True | Newfoundland | 0.104768 | True |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | Pekinese | 0.524583 | True | Shih-Tzu | 0.102931 | True | Pomeranian | 0.097893 | True |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | Doberman | 0.806163 | True | black-and-tan_coonhound | 0.097386 | True | miniature_pinscher | 0.085993 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 0.214145 | True | Irish_water_spaniel | 0.029769 | True |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | Rottweiler | 0.909106 | True | black-and-tan_coonhound | 0.044120 | True | Doberman | 0.031835 | True |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | Gordon_setter | 0.940724 | True | black-and-tan_coonhound | 0.042041 | True | Rottweiler | 0.009417 | True |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | Doberman | 0.763539 | True | black-and-tan_coonhound | 0.136602 | True | miniature_pinscher | 0.087654 | True |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | schipperke | 0.234076 | True | curly-coated_retriever | 0.193093 | True | Labrador_retriever | 0.095197 | True |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | briard | 0.982755 | True | soft-coated_wheaten_terrier | 0.009084 | True | Bouvier_des_Flandres | 0.004693 | True |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | kelpie | 0.504690 | True | German_short-haired_pointer | 0.105208 | True | Staffordshire_bullterrier | 0.054338 | True |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 0.196476 | True | Irish_terrier | 0.073096 | True |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | giant_schnauzer | 0.346468 | True | flat-coated_retriever | 0.218451 | True | Labrador_retriever | 0.108020 | True |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | Labrador_retriever | 0.972019 | True | flat-coated_retriever | 0.008178 | True | Chesapeake_Bay_retriever | 0.007359 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 0.040437 | True | Newfoundland | 0.028228 | True |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | Blenheim_spaniel | 0.972494 | True | Shih-Tzu | 0.006630 | True | Bernese_mountain_dog | 0.006239 | True |
predictions[predictions['p3'].str.contains('-')]
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | miniature_poodle | 0.201493 | True | komondor | 0.192305 | True | soft-coated_wheaten_terrier | 8.208610e-02 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 0.244220 | True | flat-coated_retriever | 1.738100e-01 | True |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | Blenheim_spaniel | 0.906777 | True | cocker_spaniel | 0.090346 | True | Shih-Tzu | 1.116870e-03 | True |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | Rottweiler | 0.283640 | True | miniature_pinscher | 0.148112 | True | black-and-tan_coonhound | 9.558480e-02 | True |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | Rottweiler | 0.999091 | True | miniature_pinscher | 0.000450 | True | black-and-tan_coonhound | 1.571400e-04 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 0.262239 | True | curly-coated_retriever | 4.891980e-02 | True |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | Chesapeake_Bay_retriever | 0.285508 | True | Weimaraner | 0.146832 | True | black-footed_ferret | 6.086480e-02 | False |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | cocker_spaniel | 0.367492 | True | Lakeland_terrier | 0.272621 | True | soft-coated_wheaten_terrier | 6.700630e-02 | True |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | Maltese_dog | 0.659619 | True | Tibetan_terrier | 0.193539 | True | Shih-Tzu | 3.932710e-02 | True |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 0.227716 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | Lakeland_terrier | 0.836632 | True | West_Highland_white_terrier | 0.073900 | True | wire-haired_fox_terrier | 3.816010e-02 | True |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 0.160580 | False | three-toed_sloth | 1.321540e-01 | False |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | Rottweiler | 0.591829 | True | Doberman | 0.204544 | True | black-and-tan_coonhound | 7.860190e-02 | True |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | dalmatian | 0.989519 | True | English_setter | 0.005258 | True | German_short-haired_pointer | 1.442830e-03 | True |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | golden_retriever | 0.949215 | True | Labrador_retriever | 0.016765 | True | flat-coated_retriever | 1.063730e-02 | True |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | Scottish_deerhound | 0.240591 | True | groenendael | 0.156916 | True | flat-coated_retriever | 9.089940e-02 | True |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | Maltese_dog | 0.579472 | True | toy_poodle | 0.133446 | True | Shih-Tzu | 9.439660e-02 | True |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | Maltese_dog | 0.759945 | True | toy_poodle | 0.101194 | True | Shih-Tzu | 5.603740e-02 | True |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | toy_poodle | 0.621780 | True | miniature_poodle | 0.197819 | True | soft-coated_wheaten_terrier | 4.674500e-02 | True |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | Maltese_dog | 0.199121 | True | West_Highland_white_terrier | 0.197897 | True | Shih-Tzu | 1.571300e-01 | True |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | Italian_greyhound | 0.399560 | True | whippet | 0.267153 | True | German_short-haired_pointer | 8.131910e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 0.009712 | False | hand-held_computer | 8.768570e-03 | False |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | Lakeland_terrier | 0.253839 | True | Airedale | 0.213349 | True | three-toed_sloth | 8.383410e-02 | False |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | Labrador_retriever | 0.417107 | True | Chesapeake_Bay_retriever | 0.341730 | True | German_short-haired_pointer | 1.777020e-01 | True |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | pug | 0.178205 | True | Chihuahua | 0.149164 | True | Shih-Tzu | 1.205050e-01 | True |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg | 1 | sea_lion | 0.519811 | False | Siamese_cat | 0.290971 | False | black-footed_ferret | 3.996670e-02 | False |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | Scottish_deerhound | 0.111893 | True | bluetick | 0.074302 | True | German_short-haired_pointer | 6.700040e-02 | True |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 0.080870 | True | Shih-Tzu | 7.209880e-02 | True |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 0.139099 | False | black-footed_ferret | 8.223200e-02 | False |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | Great_Dane | 0.126924 | True | Greater_Swiss_Mountain_dog | 0.110037 | True | German_short-haired_pointer | 9.081600e-02 | True |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 0.005558 | True | curly-coated_retriever | 3.322210e-03 | True |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | Labrador_retriever | 0.990119 | True | Chesapeake_Bay_retriever | 0.008026 | True | curly-coated_retriever | 1.242290e-03 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 0.201566 | True | black-footed_ferret | 1.015590e-01 | False |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | cocker_spaniel | 0.414982 | True | Newfoundland | 0.225482 | True | flat-coated_retriever | 1.967890e-01 | True |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 0.153126 | False | three-toed_sloth | 1.118400e-01 | False |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 0.117402 | False | black-footed_ferret | 9.993270e-02 | False |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 0.248664 | True | Shih-Tzu | 1.110150e-01 | True |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | cocker_spaniel | 0.961643 | True | toy_poodle | 0.011547 | True | soft-coated_wheaten_terrier | 4.903330e-03 | True |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | dalmatian | 0.562315 | True | Great_Dane | 0.416478 | True | German_short-haired_pointer | 8.552360e-03 | True |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 0.160953 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | Old_English_sheepdog | 0.515319 | True | West_Highland_white_terrier | 0.151040 | True | soft-coated_wheaten_terrier | 5.642000e-02 | True |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg | 1 | Bedlington_terrier | 0.399163 | True | standard_poodle | 0.086425 | True | wire-haired_fox_terrier | 7.523110e-02 | True |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | Chesapeake_Bay_retriever | 0.848514 | True | Labrador_retriever | 0.110054 | True | curly-coated_retriever | 2.520140e-02 | True |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 0.227716 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | Old_English_sheepdog | 0.969311 | True | Maltese_dog | 0.013243 | True | soft-coated_wheaten_terrier | 4.857310e-03 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 0.136245 | False | three-toed_sloth | 1.174640e-01 | False |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 0.190503 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg | 1 | golden_retriever | 0.193082 | True | Chesapeake_Bay_retriever | 0.157927 | True | soft-coated_wheaten_terrier | 1.246840e-01 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 0.082318 | True | curly-coated_retriever | 6.746050e-02 | True |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | beagle | 0.396280 | True | Pembroke | 0.049562 | True | wire-haired_fox_terrier | 4.634920e-02 | True |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 0.190503 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | miniature_poodle | 0.626913 | True | toy_poodle | 0.265582 | True | soft-coated_wheaten_terrier | 4.161420e-02 | True |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | Rottweiler | 0.681495 | True | Tibetan_mastiff | 0.147940 | True | black-and-tan_coonhound | 2.452520e-02 | True |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | Labrador_retriever | 0.782058 | True | golden_retriever | 0.156581 | True | soft-coated_wheaten_terrier | 7.275120e-03 | True |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | Irish_water_spaniel | 0.567475 | True | Labrador_retriever | 0.169496 | True | curly-coated_retriever | 1.015180e-01 | True |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg | 1 | Yorkshire_terrier | 0.249012 | True | Maltese_dog | 0.166364 | True | Shih-Tzu | 1.422540e-01 | True |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 0.028418 | False | go-kart | 5.595040e-07 | False |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 0.306407 | True | curly-coated_retriever | 6.131410e-02 | True |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | Labrador_retriever | 0.476913 | True | Chesapeake_Bay_retriever | 0.174145 | True | German_short-haired_pointer | 9.286140e-02 | True |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | Labrador_retriever | 0.850050 | True | Chesapeake_Bay_retriever | 0.074257 | True | flat-coated_retriever | 1.557940e-02 | True |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 0.225770 | True | German_short-haired_pointer | 1.752190e-01 | True |
For the Assessment Summary: looks like the dashes are used in dog's descriptions and underscores are used in the name of the dog breed; I assume, it is safe to keep the data as it is. There is no need to change the dashes to underscores in this case (the way it is originally is even better; for example, if someone would like to split the values into two columns 'description' and 'breed', it will be easier based on the dashes and underscores)
3.tweet_data assessment
We will use info(), isnull(), duplicated()and describe() to check for inconcistences
tweet_data.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2354 entries, 0 to 2353 Data columns (total 5 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2354 non-null int64 1 favorite_count 2354 non-null int64 2 retweet_count 2354 non-null int64 3 retweet_status 2354 non-null object 4 url 2354 non-null object dtypes: int64(3), object(2) memory usage: 92.1+ KB
The result looks good. No null values, Data types are correct
#check for null values, just in case
tweet_data.isnull().sum()
tweet_id 0 favorite_count 0 retweet_count 0 retweet_status 0 url 0 dtype: int64
##check for duplicated values
sum(tweet_data.duplicated())
0
#descriptive statistics
tweet_data.describe()
| tweet_id | favorite_count | retweet_count | |
|---|---|---|---|
| count | 2.354000e+03 | 2354.000000 | 2354.000000 |
| mean | 7.426978e+17 | 8080.968564 | 3164.797366 |
| std | 6.852812e+16 | 11814.771334 | 5284.770364 |
| min | 6.660209e+17 | 0.000000 | 0.000000 |
| 25% | 6.783975e+17 | 1415.000000 | 624.500000 |
| 50% | 7.194596e+17 | 3603.500000 | 1473.500000 |
| 75% | 7.993058e+17 | 10122.250000 | 3652.000000 |
| max | 8.924206e+17 | 132810.000000 | 79515.000000 |
Looks like there are tweets that have 0 favorite_count and 0 retweet_count. Let's have a quick on the correlation between favorite_count and retweet_count
# Plotting the correlation
plt.figure(figsize=(10, 6))
sns.scatterplot(x='favorite_count', y='retweet_count', data=tweet_data)
plt.title('Correlation between Favorite Count and Retweet Count')
plt.xlabel('Favorite Count')
plt.ylabel('Retweet Count')
plt.show()
There is a positive correlation between favorite counts and retweet counts. As the number of favorites increases, the number of retweets also tends to increase.
To keep in mind for the future analysis after the data is clean and combined into single daaframe: investigate further the correlation between these two values.
ASSESSMENT SUMMARY:
Tidiness:
x_archive
These columns: doggo, floofer, pupper, and puppo are not clean. These columns should be combined into one column 'dog type'. The not valid values should be removed.
predictions
The columns that are directly related to predicion (p1, p2, p3, p1_conf, p2_conf, p3_conf, p1_dog, p2_dog, p3_dog) are not clean. These columns should be combined adequatly into columns 'prediction', 'dog_status', 'confidence'. After performing the above, the column 'prediction_num' should be added for clarity.
Quality:
x_archive
Timestamp should be in the datetime format The columns (doggo, floofer, pupper, and puppo) should be in the categorical data type Values in dogs names column should be corrected ("None", lowercase words, etc.)
predictions
The prediction confidence float should be limited to two decimal places for clarity Ensure that the new prediction_num column has the data type int The first letter capitalisation for values in p1, p2, and p3 should be corrected Values in dog predictions (p1, p2, p3) should be categorical data type (we can change it after combining into one column) The duplicated jpg_url that are related to retweets should be deleted
tweet_data
There are 0 values in retweet_count and favorite_count As the rows with 0 for the favorite_count are related to retweets so I assume they will be deleted anyway in the process of cleaning prediction from duplicated_urls.
CLEANING DATA
We will complete the following items in Cleaning section:
Before we wil perform the cleaning, we will make a copy of the original data.
During cleaning, we will use the define-code-test framework and clearly document it.
We will merge individual pieces of data according to the rules of tidy data.
The result will be a high-quality and tidy master pandas DataFrame.
We will start with making the copies of each dataframe
#make copies of each data frame
archive_clean = x_archive.copy()
predictions_clean = predictions.copy()
tweet_data_clean = tweet_data.copy()
In the next steps, we will take care of retweets and duplicated jpg_urls (which are in other word the urls of the images used for the predeictions) to focus only on the original content from WeRateDogs. Also, we don't want any confusion caused by the same urls. We will:
# remove retweets
archive_clean = archive_clean[archive_clean['retweeted_status_id'].isnull()]
# drop columns related to retweets
archive_clean.drop(['retweeted_status_id', 'retweeted_status_user_id', 'retweeted_status_timestamp'], axis=1, inplace=True)
#check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 2175 entries, 0 to 2355 Data columns (total 14 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2175 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2175 non-null object 4 source 2175 non-null object 5 text 2175 non-null object 6 expanded_urls 2117 non-null object 7 rating_numerator 2175 non-null int64 8 rating_denominator 2175 non-null int64 9 name 2175 non-null object 10 doggo 2175 non-null object 11 floofer 2175 non-null object 12 pupper 2175 non-null object 13 puppo 2175 non-null object dtypes: float64(2), int64(3), object(9) memory usage: 254.9+ KB
As we assessed earlier, the duplicated jpg_urls are related to retweets do we don't want them in predictions. We will query the rows in predictions_clean with tweet_id present in archive_clean to remove retweets. At the same time, the duplicated values in the jpg_url column will be removed.
#Query the rows
archive_clean_tweets = archive_clean['tweet_id']
predictions_clean = predictions_clean.query('tweet_id in @archive_clean_tweets')
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1994 entries, 0 to 2074 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1994 non-null int64 1 jpg_url 1994 non-null object 2 img_num 1994 non-null int64 3 p1 1994 non-null object 4 p1_conf 1994 non-null float64 5 p1_dog 1994 non-null bool 6 p2 1994 non-null object 7 p2_conf 1994 non-null float64 8 p2_dog 1994 non-null bool 9 p3 1994 non-null object 10 p3_conf 1994 non-null float64 11 p3_dog 1994 non-null bool dtypes: bool(3), float64(3), int64(2), object(4) memory usage: 161.6+ KB
#check
test = predictions.query('p1_dog == False')
test
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | shopping_cart | 0.962465 | False | shopping_basket | 1.459380e-02 | False | golden_retriever | 7.958960e-03 | True |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 22 | 666337882303524864 | https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg | 1 | ox | 0.416669 | False | Newfoundland | 2.784070e-01 | True | groenendael | 1.026430e-01 | True |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 33 | 666430724426358785 | https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg | 1 | llama | 0.505184 | False | Irish_terrier | 1.041090e-01 | True | dingo | 6.207120e-02 | False |
| 43 | 666776908487630848 | https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg | 1 | seat_belt | 0.375057 | False | miniature_pinscher | 1.671750e-01 | True | Chihuahua | 8.695060e-02 | True |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 52 | 666996132027977728 | https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg | 1 | hay | 0.507637 | False | Rottweiler | 6.248990e-02 | True | water_buffalo | 4.842470e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 87 | 667524857454854144 | https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg | 1 | hare | 0.447893 | False | dhole | 9.243530e-02 | False | Chesapeake_Bay_retriever | 8.812240e-02 | True |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 95 | 667550904950915073 | https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg | 1 | web_site | 0.999335 | False | vizsla | 8.106320e-05 | True | collie | 6.915900e-05 | True |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 103 | 667806454573760512 | https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg | 1 | toyshop | 0.253089 | False | Chihuahua | 1.871550e-01 | True | Brabancon_griffon | 1.127990e-01 | True |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 108 | 667878741721415682 | https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg | 1 | seat_belt | 0.200373 | False | miniature_pinscher | 1.060030e-01 | True | schipperke | 1.047330e-01 | True |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 113 | 667915453470232577 | https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg | 1 | leatherback_turtle | 0.452517 | False | boxer | 1.966550e-01 | True | terrapin | 1.609830e-01 | False |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 126 | 668256321989451776 | https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg | 1 | canoe | 0.407683 | False | paddle | 1.155500e-01 | False | Pembroke | 9.442940e-02 | True |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 131 | 668297328638447616 | https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg | 1 | king_penguin | 0.606747 | False | ice_bear | 2.642210e-01 | False | Eskimo_dog | 3.278380e-02 | True |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 133 | 668480044826800133 | https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg | 1 | Arctic_fox | 0.119243 | False | Labrador_retriever | 9.996480e-02 | True | pug | 8.671650e-02 | True |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 145 | 668625577880875008 | https://pbs.twimg.com/media/CUdvambWoAA007z.jpg | 1 | ox | 0.071536 | False | groenendael | 5.445480e-02 | True | Angora | 4.502800e-02 | False |
| 150 | 668641109086707712 | https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg | 1 | vacuum | 0.432594 | False | pug | 1.463110e-01 | True | toilet_tissue | 2.450030e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | teddy | 0.413379 | False | pillow | 3.256230e-01 | False | miniature_schnauzer | 3.553660e-02 | True |
| 163 | 668960084974809088 | https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg | 1 | shower_curtain | 0.226309 | False | Chesapeake_Bay_retriever | 1.658780e-01 | True | bathtub | 5.672610e-02 | False |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 167 | 668986018524233728 | https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg | 1 | doormat | 0.976103 | False | Chihuahua | 5.639720e-03 | True | Norfolk_terrier | 3.912650e-03 | True |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 171 | 668994913074286592 | https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg | 1 | hog | 0.113789 | False | English_springer | 8.976330e-02 | True | French_bulldog | 8.218640e-02 | True |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 179 | 669324657376567296 | https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg | 1 | seashore | 0.201659 | False | Cardigan | 1.315440e-01 | True | sandbar | 1.014300e-01 | False |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | teddy | 0.379656 | False | Pembroke | 2.123430e-01 | True | chow | 9.699530e-02 | True |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 198 | 669625907762618368 | https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg | 1 | seat_belt | 0.874502 | False | golden_retriever | 5.540810e-02 | True | Labrador_retriever | 2.685430e-02 | True |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 210 | 669993076832759809 | https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg | 1 | piggy_bank | 0.176320 | False | hair_spray | 9.748700e-02 | False | toy_poodle | 8.650160e-02 | True |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 213 | 670040295598354432 | https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg | 1 | web_site | 0.901552 | False | borzoi | 2.665960e-02 | True | Chihuahua | 1.243760e-02 | True |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 235 | 670427002554466305 | https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg | 1 | seat_belt | 0.952258 | False | toy_terrier | 3.887160e-02 | True | beagle | 3.226440e-03 | True |
| 237 | 670433248821026816 | https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg | 1 | window_shade | 0.583427 | False | giant_schnauzer | 6.221480e-02 | True | window_screen | 3.994100e-02 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 2.735100e-02 | True | Labrador_retriever | 2.008090e-02 | True |
| 239 | 670435821946826752 | https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg | 1 | sorrel | 0.460370 | False | basenji | 1.357670e-01 | True | Cardigan | 9.917430e-02 | True |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 243 | 670452855871037440 | https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg | 1 | Arctic_fox | 0.188174 | False | indri | 1.235840e-01 | False | malamute | 8.037950e-02 | True |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | dingo | 0.777124 | False | Pembroke | 1.274380e-01 | True | Cardigan | 2.400660e-02 | True |
| 263 | 670792680469889025 | https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg | 1 | brown_bear | 0.882426 | False | toy_poodle | 3.135500e-02 | True | miniature_poodle | 2.574340e-02 | True |
| 270 | 670822709593571328 | https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg | 1 | web_site | 0.993887 | False | Chihuahua | 1.251520e-03 | True | menu | 5.987510e-04 | False |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 281 | 671122204919246848 | https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg | 1 | goose | 0.351957 | False | Chihuahua | 1.012280e-01 | True | hen | 6.581760e-02 | False |
| 284 | 671141549288370177 | https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg | 1 | guinea_pig | 0.387728 | False | wood_rabbit | 1.716810e-01 | False | borzoi | 7.535770e-02 | True |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | African_hunting_dog | 0.733025 | False | plow | 1.193770e-01 | False | Scottish_deerhound | 2.698290e-02 | True |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 315 | 671735591348891648 | https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg | 2 | stone_wall | 0.271121 | False | Irish_wolfhound | 6.307820e-02 | True | poncho | 4.822590e-02 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 329 | 672082170312290304 | https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg | 1 | hamster | 0.132440 | False | toy_poodle | 1.239620e-01 | True | bubble | 5.621240e-02 | False |
| 331 | 672125275208069120 | https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg | 1 | tennis_ball | 0.999834 | False | golden_retriever | 8.675670e-05 | True | racket | 5.332190e-05 | False |
| 335 | 672205392827572224 | https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg | 1 | carton | 0.952613 | False | crate | 3.537620e-02 | False | pug | 3.266910e-03 | True |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 352 | 672538107540070400 | https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg | 1 | Siamese_cat | 0.383937 | False | Chihuahua | 1.602740e-01 | True | giant_panda | 1.477450e-01 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 371 | 672980819271634944 | https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg | 1 | car_mirror | 0.232754 | False | basset | 2.194610e-01 | True | beagle | 1.123970e-01 | True |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 383 | 673342308415348736 | https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg | 1 | ski_mask | 0.981017 | False | Chihuahua | 1.355920e-02 | True | kelpie | 6.521800e-04 | True |
| 385 | 673345638550134785 | https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg | 1 | hamster | 0.761025 | False | weasel | 6.936170e-02 | False | Pomeranian | 6.462700e-02 | True |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 393 | 673583129559498752 | https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg | 1 | Arctic_fox | 0.153271 | False | golden_retriever | 1.139460e-01 | True | borzoi | 1.107180e-01 | True |
| 395 | 673636718965334016 | https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg | 1 | wombat | 0.880257 | False | corn | 1.942070e-02 | False | pug | 1.904430e-02 | True |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 4.892770e-02 | True | Siberian_husky | 3.038600e-02 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 1.159840e-01 | True | miniature_pinscher | 5.217500e-02 | True |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 435 | 674394782723014656 | https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg | 1 | toilet_tissue | 0.134983 | False | mosquito_net | 1.332470e-01 | False | Lakeland_terrier | 1.090990e-01 | True |
| 436 | 674410619106390016 | https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg | 1 | brown_bear | 0.698207 | False | sea_lion | 4.647450e-02 | False | beagle | 1.942680e-02 | True |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 1.054160e-01 | True | Lhasa | 7.283230e-02 | True |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 444 | 674644256330530816 | https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg | 1 | soccer_ball | 0.398102 | False | basset | 3.356920e-01 | True | cocker_spaniel | 7.294080e-02 | True |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 466 | 675015141583413248 | https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg | 1 | street_sign | 0.290091 | False | golden_retriever | 2.583720e-01 | True | sandbar | 1.321730e-01 | False |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | dingo | 0.288447 | False | Cardigan | 2.299440e-01 | True | Pembroke | 1.904070e-01 | True |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 477 | 675166823650848770 | https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg | 1 | llama | 0.284394 | False | standard_poodle | 1.325690e-01 | True | teddy | 1.279750e-01 | False |
| 480 | 675354435921575936 | https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 493 | 675707330206547968 | https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg | 1 | bath_towel | 0.721933 | False | Staffordshire_bullterrier | 5.934420e-02 | True | bagel | 3.570160e-02 | False |
| 503 | 675878199931371520 | https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg | 1 | wood_rabbit | 0.785756 | False | hare | 1.181810e-01 | False | Cardigan | 4.362710e-02 | True |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 513 | 676219687039057920 | https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg | 1 | bubble | 0.997556 | False | leafhopper | 1.589610e-04 | False | whippet | 1.324640e-04 | True |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | teddy | 0.098283 | False | toy_poodle | 9.802930e-02 | True | shopping_basket | 7.785210e-02 | False |
| 521 | 676575501977128964 | https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg | 1 | feather_boa | 0.424106 | False | Yorkshire_terrier | 7.314430e-02 | True | Shetland_sheepdog | 5.759760e-02 | True |
| 522 | 676582956622721024 | https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg | 1 | seat_belt | 0.790028 | False | Boston_bull | 1.963070e-01 | True | French_bulldog | 1.242890e-02 | True |
| 525 | 676606785097199616 | https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg | 1 | Loafer | 0.202999 | False | doormat | 2.004110e-01 | False | malinois | 1.423000e-01 | True |
| 526 | 676613908052996102 | https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg | 1 | book_jacket | 0.493790 | False | Doberman | 9.642280e-02 | True | miniature_pinscher | 7.064670e-02 | True |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/676776408941662209/pu/img/k-6I3YEZAQtYPBXR.jpg | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 530 | 676819651066732545 | https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg | 2 | rain_barrel | 0.625555 | False | barrel | 1.383830e-01 | False | Labrador_retriever | 3.946460e-02 | True |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 546 | 677328882937298944 | https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg | 1 | water_buffalo | 0.424250 | False | kelpie | 2.905410e-02 | True | Staffordshire_bullterrier | 2.846970e-02 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 2.490170e-01 | True | Pekinese | 2.092130e-01 | True |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | teddy | 0.662908 | False | crib | 3.189120e-02 | False | chow | 2.543780e-02 | True |
| 568 | 678380236862578688 | https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg | 1 | dogsled | 0.088540 | False | snowmobile | 5.729100e-02 | False | Samoyed | 4.760140e-02 | True |
| 571 | 678399652199309312 | https://pbs.twimg.com/ext_tw_video_thumb/678399528077250560/pu/img/BOjUNHRsYLeSo0hl.jpg | 1 | swing | 0.929196 | False | Bedlington_terrier | 1.504720e-02 | True | Great_Pyrenees | 1.403890e-02 | True |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 577 | 678740035362037760 | https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg | 1 | seat_belt | 0.787164 | False | sunglasses | 4.573870e-02 | False | beagle | 2.252510e-02 | True |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 586 | 679047485189439488 | https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg | 1 | panpipe | 0.962572 | False | bannister | 2.524820e-02 | False | golden_retriever | 2.930350e-03 | True |
| 587 | 679062614270468097 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 599 | 679729593985699840 | https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg | 1 | wallaby | 0.164215 | False | West_Highland_white_terrier | 9.351480e-02 | True | ashcan | 6.727830e-02 | False |
| 604 | 679854723806179328 | https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg | 1 | llama | 0.887963 | False | ram | 9.502070e-02 | False | chow | 2.307390e-03 | True |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 1.218110e-01 | True | bubble | 1.178200e-01 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/680440290977693696/pu/img/B900g7b-n-zhnwi5.jpg | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 632 | 680959110691590145 | https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg | 2 | carousel | 0.500992 | False | feather_boa | 6.439000e-02 | False | pug | 4.435650e-02 | True |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 642 | 681339448655802368 | https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg | 1 | seat_belt | 0.532441 | False | Labrador_retriever | 9.461490e-02 | True | kuvasz | 8.986300e-02 | True |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 657 | 682303737705140231 | https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg | 1 | seat_belt | 0.997659 | False | Lakeland_terrier | 1.730920e-03 | True | Airedale | 2.036100e-04 | True |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | dingo | 0.278600 | False | Chihuahua | 1.552070e-01 | True | loupe | 1.535980e-01 | False |
| 669 | 683078886620553216 | https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg | 1 | koala | 0.141432 | False | Eskimo_dog | 9.404420e-02 | True | wallaby | 8.523650e-02 | False |
| 683 | 683849932751646720 | https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg | 1 | hog | 0.458855 | False | Mexican_hairless | 1.649060e-01 | True | wild_boar | 1.117000e-01 | False |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 703 | 684914660081053696 | https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg | 1 | shopping_cart | 0.460950 | False | chow | 2.612880e-01 | True | Labrador_retriever | 7.419380e-02 | True |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 708 | 685198997565345792 | https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg | 1 | dishwasher | 0.888829 | False | stove | 1.341150e-02 | False | Old_English_sheepdog | 9.671380e-03 | True |
| 714 | 685532292383666176 | https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg | 1 | white_wolf | 0.318524 | False | dingo | 2.154360e-01 | False | collie | 9.580520e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 738 | 687124485711986689 | https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg | 1 | car_mirror | 0.997121 | False | seat_belt | 3.750870e-04 | False | beagle | 2.162060e-04 | True |
| 740 | 687312378585812992 | https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg | 1 | seat_belt | 0.703561 | False | Great_Dane | 1.399090e-01 | True | Weimaraner | 2.111250e-02 | True |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/688211379870806016/pu/img/OI0VTwPYnsScQg8R.jpg | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/689289176076959744/pu/img/hEFkFtmMu_hkTlxK.jpg | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 773 | 689599056876867584 | https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg | 1 | dogsled | 0.426494 | False | cocker_spaniel | 7.310140e-02 | True | Chihuahua | 7.032290e-02 | True |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 780 | 689977555533848577 | https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg | 1 | cowboy_hat | 0.291081 | False | Labrador_retriever | 1.796250e-01 | True | sombrero | 1.214930e-01 | False |
| 784 | 690021994562220032 | https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg | 1 | badger | 0.289550 | False | weasel | 9.914020e-02 | False | malamute | 4.069580e-02 | True |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 790 | 690649993829576704 | https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg | 1 | bighorn | 0.215438 | False | hyena | 1.379280e-01 | False | Mexican_hairless | 9.817080e-02 | True |
| 791 | 690690673629138944 | https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg | 1 | bath_towel | 0.194532 | False | radiator | 1.277760e-01 | False | Maltese_dog | 8.962460e-02 | True |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | ice_lolly | 0.660099 | False | neck_brace | 3.956290e-02 | False | Yorkshire_terrier | 3.348780e-02 | True |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/693486485266247680/pu/img/KhapmUYPQTpbwNf8.jpg | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 8.087000e-02 | True | Shih-Tzu | 7.209880e-02 | True |
| 839 | 694356675654983680 | https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg | 1 | hamster | 0.429871 | False | Pomeranian | 1.442720e-01 | True | pretzel | 1.272200e-01 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/695064251149508610/pu/img/0OPED0aUurb9Z16a.jpg | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 855 | 696713835009417216 | https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg | 1 | car_mirror | 0.379797 | False | Chesapeake_Bay_retriever | 3.215890e-01 | True | vizsla | 1.169310e-01 | True |
| 856 | 696754882863349760 | https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg | 1 | weasel | 0.137832 | False | toy_poodle | 9.837810e-02 | True | Scottish_deerhound | 9.739670e-02 | True |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 861 | 697242256848379904 | https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg | 1 | grey_fox | 0.236031 | False | Siamese_cat | 1.657910e-01 | False | Eskimo_dog | 6.353280e-02 | True |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 867 | 697575480820686848 | https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg | 1 | Siamese_cat | 0.256698 | False | whippet | 1.198050e-01 | True | bull_mastiff | 1.025950e-01 | True |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 905 | 700151421916807169 | https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg | 1 | tennis_ball | 0.328236 | False | Italian_greyhound | 1.768380e-01 | True | Staffordshire_bullterrier | 1.340800e-01 | True |
| 907 | 700462010979500032 | https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg | 1 | hamster | 0.678651 | False | Pomeranian | 1.102680e-01 | True | Angora | 1.041390e-01 | False |
| 908 | 700505138482569216 | https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg | 1 | bath_towel | 0.449684 | False | Norwegian_elkhound | 1.602050e-01 | True | Great_Dane | 4.866580e-02 | True |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 914 | 700890391244103680 | https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg | 1 | white_wolf | 0.166563 | False | schipperke | 1.223560e-01 | True | West_Highland_white_terrier | 1.192470e-01 | True |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 932 | 703268521220972544 | https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg | 1 | wool | 0.525434 | False | fur_coat | 2.363910e-01 | False | kuvasz | 3.824300e-02 | True |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | teddy | 0.233378 | False | feather_boa | 8.847440e-02 | False | Brittany_spaniel | 8.291730e-02 | True |
| 947 | 704761120771465216 | https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg | 1 | Siamese_cat | 0.202294 | False | Chihuahua | 1.004180e-01 | True | basenji | 7.209650e-02 | True |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 954 | 705223444686888960 | https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg | 1 | Egyptian_cat | 0.090508 | False | Chesapeake_Bay_retriever | 7.737330e-02 | True | Mexican_hairless | 4.947150e-02 | True |
| 960 | 705786532653883392 | https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg | 1 | web_site | 0.550294 | False | Labrador_retriever | 1.484960e-01 | True | golden_retriever | 1.484820e-01 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 972 | 706644897839910912 | https://pbs.twimg.com/ext_tw_video_thumb/706644797256241152/pu/img/NTqvmIUQExGmKFSR.jpg | 1 | space_heater | 0.137871 | False | Chihuahua | 1.329280e-01 | True | cougar | 1.138660e-01 | False |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 984 | 707420581654872064 | https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg | 1 | ram | 0.518215 | False | kuvasz | 1.493910e-01 | True | Great_Pyrenees | 1.060030e-01 | True |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 996 | 708349470027751425 | https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg | 1 | muzzle | 0.243890 | False | basenji | 1.871580e-01 | True | Boston_bull | 9.272700e-02 | True |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 5.269460e-02 | True | Labrador_retriever | 1.847740e-02 | True |
| 1005 | 709042156699303936 | https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg | 1 | hotdog | 0.826579 | False | Rottweiler | 6.817930e-02 | True | Labrador_retriever | 4.921790e-02 | True |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1020 | 710153181850935296 | https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg | 2 | cowboy_hat | 0.979053 | False | sombrero | 1.068250e-02 | False | cocker_spaniel | 2.712960e-03 | True |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | dingo | 0.536593 | False | Pembroke | 2.004070e-01 | True | basenji | 6.073450e-02 | True |
| 1030 | 711306686208872448 | https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg | 1 | leatherback_turtle | 0.280835 | False | loggerhead | 1.232900e-01 | False | Dandie_Dinmont | 8.679250e-02 | True |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | dingo | 0.366875 | False | Ibizan_hound | 3.349290e-01 | True | Eskimo_dog | 7.387620e-02 | True |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1037 | 711998809858043904 | https://pbs.twimg.com/tweet_video_thumb/CeGGkWuUUAAYWU1.jpg | 1 | comic_book | 0.105171 | False | kuvasz | 5.989510e-02 | True | book_jacket | 4.663810e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1042 | 712438159032893441 | https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg | 1 | ice_bear | 0.869477 | False | Great_Pyrenees | 6.945700e-02 | True | Labrador_retriever | 2.474000e-02 | True |
| 1046 | 713175907180089344 | https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg | 1 | timber_wolf | 0.503788 | False | malamute | 4.306240e-01 | True | Siberian_husky | 2.845420e-02 | True |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | dingo | 0.310903 | False | Chihuahua | 1.422880e-01 | True | Cardigan | 1.039450e-01 | True |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1083 | 718460005985447936 | https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg | 1 | badger | 0.356946 | False | Boston_bull | 2.527810e-01 | True | kelpie | 1.134330e-01 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 5.097100e-02 | True | Tibetan_terrier | 4.775940e-02 | True |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1106 | 723179728551723008 | https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg | 1 | tennis_ball | 0.176495 | False | badger | 5.990520e-02 | False | Norwegian_elkhound | 5.685050e-02 | True |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | teddy | 0.263256 | False | chow | 8.901020e-02 | True | Irish_terrier | 6.530570e-02 | True |
| 1110 | 724004602748780546 | https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg | 3 | Siamese_cat | 0.950526 | False | pug | 1.887690e-02 | True | quilt | 7.627600e-03 | False |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | teddy | 0.821615 | False | toy_poodle | 8.374900e-02 | True | Lakeland_terrier | 3.331800e-02 | True |
| 1124 | 727286334147182592 | https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg | 1 | bonnet | 0.146440 | False | sock | 8.309100e-02 | False | Chihuahua | 7.055420e-02 | True |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 2.486640e-01 | True | Shih-Tzu | 1.110150e-01 | True |
| 1133 | 728409960103686147 | https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg | 1 | Siamese_cat | 0.478278 | False | Saint_Bernard | 9.424560e-02 | True | king_penguin | 8.215670e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/729838572744912896/pu/img/RIl-XYmRxW-YLFSV.jpg | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1147 | 730924654643314689 | https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg | 1 | polecat | 0.185382 | False | mink | 1.052820e-01 | False | Newfoundland | 8.624110e-02 | True |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1151 | 732375214819057664 | https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg | 1 | tennis_ball | 0.998673 | False | basset | 5.470530e-04 | True | golden_retriever | 3.599800e-04 | True |
| 1154 | 732732193018155009 | https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg | 1 | koala | 0.162935 | False | Staffordshire_bullterrier | 1.279690e-01 | True | mongoose | 9.642100e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1171 | 736365877722001409 | https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg | 3 | cup | 0.473555 | False | toy_poodle | 8.260600e-02 | True | consomme | 4.829800e-02 | False |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/737310236135043073/pu/img/_lG4DXmH-_XEq7Rc.jpg | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1185 | 738885046782832640 | https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg | 1 | bath_towel | 0.878320 | False | swab | 2.063330e-02 | False | American_Staffordshire_terrier | 1.553510e-02 | True |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1197 | 740676976021798912 | https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg | 1 | wombat | 0.462952 | False | Norwegian_elkhound | 2.752250e-01 | True | Siamese_cat | 4.355930e-02 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1206 | 742150209887731712 | https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg | 1 | Siamese_cat | 0.112413 | False | French_bulldog | 7.141440e-02 | True | hog | 6.246540e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/743509040018268160/pu/img/Ol2OgO5f8ciUp80r.jpg | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1216 | 743545585370791937 | https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg | 2 | rapeseed | 0.876875 | False | standard_poodle | 6.058350e-02 | True | Great_Pyrenees | 3.300570e-02 | True |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1229 | 745433870967832576 | https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg | 1 | barrow | 0.999962 | False | basset | 1.448950e-05 | True | wok | 6.060880e-06 | False |
| 1230 | 745712589599014916 | https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg | 1 | seat_belt | 0.379055 | False | chow | 6.275450e-02 | True | minibus | 5.242260e-02 | False |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | dingo | 0.175518 | False | timber_wolf | 1.336470e-01 | False | Ibizan_hound | 1.015370e-01 | True |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 1.609530e-01 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/748704826305970176/pu/img/QHuadM5eEygfBeOf.jpg | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 1.952230e-02 | True | Samoyed | 6.395620e-03 | True |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1272 | 750011400160841729 | https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg | 1 | muzzle | 0.237620 | False | Boston_bull | 8.714980e-02 | True | sombrero | 6.850990e-02 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1297 | 752309394570878976 | https://pbs.twimg.com/ext_tw_video_thumb/675354114423808004/pu/img/qL1R_nGLqa6lmkOx.jpg | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 1299 | 752519690950500352 | https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg | 3 | swing | 0.999984 | False | Labrador_retriever | 1.002880e-05 | True | Eskimo_dog | 1.434470e-06 | True |
| 1300 | 752660715232722944 | https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg | 2 | goose | 0.339324 | False | English_setter | 5.051180e-02 | True | basset | 4.909330e-02 | True |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/753420390836346880/pu/img/ZHLvYxSHYuQK3uXi.jpg | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/754481405627957248/pu/img/YY1eBDOlP9QFC4Bj.jpg | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1320 | 756288534030475264 | https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg | 3 | conch | 0.925621 | False | French_bulldog | 3.249220e-02 | True | tiger_cat | 6.679080e-03 | False |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1328 | 757400162377592832 | https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg | 1 | seat_belt | 0.523926 | False | golden_retriever | 8.780030e-02 | True | Tibetan_mastiff | 7.512670e-02 | True |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1332 | 757725642876129280 | https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg | 2 | seat_belt | 0.425176 | False | Labrador_retriever | 1.281280e-01 | True | Siamese_cat | 9.124110e-02 | False |
| 1333 | 757729163776290825 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 1334 | 757741869644341248 | https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg | 1 | skunk | 0.609715 | False | Old_English_sheepdog | 1.288990e-01 | True | Siberian_husky | 1.907610e-02 | True |
| 1335 | 758041019896193024 | https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg | 1 | bookshop | 0.794272 | False | Cardigan | 5.126530e-02 | True | Bernese_mountain_dog | 2.659630e-02 | True |
| 1342 | 758854675097526272 | https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg | 4 | barrow | 0.974047 | False | Old_English_sheepdog | 2.379140e-02 | True | komondor | 1.246300e-03 | True |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1361 | 761227390836215808 | https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg | 1 | cougar | 0.306512 | False | French_bulldog | 2.808020e-01 | True | boxer | 5.452340e-02 | True |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7oXEAEWbEg.jpg | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/761672828462718981/pu/img/R00UYAAWB3GtuHdI.jpg | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/762035577168560129/pu/img/kD4TeHRRiSKgOyDx.jpg | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1375 | 763103485927849985 | https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg | 2 | seat_belt | 0.685821 | False | ice_bear | 8.159720e-02 | False | chow | 3.908480e-02 | True |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1409 | 770414278348247044 | https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg | 1 | maillot | 0.580528 | False | maillot | 8.144890e-02 | False | golden_retriever | 5.356960e-02 | True |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1416 | 771136648247640064 | https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg | 1 | bathtub | 0.368660 | False | golden_retriever | 2.974020e-01 | True | tub | 2.017110e-01 | False |
| 1429 | 772877495989305348 | https://pbs.twimg.com/ext_tw_video_thumb/772874595468795904/pu/img/t8gbjy2rA19xtQYR.jpg | 1 | tabby | 0.218303 | False | Norwegian_elkhound | 1.385230e-01 | True | wombat | 7.421720e-02 | False |
| 1431 | 773247561583001600 | https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg | 1 | seat_belt | 0.713588 | False | miniature_pinscher | 8.336880e-02 | True | Brabancon_griffon | 7.569610e-02 | True |
| 1432 | 773308824254029826 | https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg | 1 | shopping_cart | 0.572349 | False | Labrador_retriever | 1.514060e-01 | True | shopping_basket | 1.071020e-01 | False |
| 1437 | 773985732834758656 | https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg | 4 | giant_panda | 0.451149 | False | fur_coat | 1.480010e-01 | False | pug | 1.095700e-01 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1447 | 776088319444877312 | https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg | 3 | web_site | 0.999916 | False | pug | 7.657020e-05 | True | menu | 2.164680e-06 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/779377444025499652/pu/img/eIiLDy9F6rPNarEc.jpg | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1484 | 781524693396357120 | https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg | 1 | tennis_ball | 0.994712 | False | Chesapeake_Bay_retriever | 3.522500e-03 | True | Labrador_retriever | 9.214390e-04 | True |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1492 | 782969140009107456 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1504 | 785170936622350336 | https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg | 2 | seat_belt | 0.891193 | False | Eskimo_dog | 2.749440e-02 | True | Samoyed | 1.953030e-02 | True |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | teddy | 0.674893 | False | cradle | 5.673960e-02 | False | chow | 5.613700e-02 | True |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | teddy | 0.972070 | False | toy_poodle | 8.492620e-03 | True | chow | 2.882710e-03 | True |
| 1517 | 787322443945877504 | https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg | 1 | seat_belt | 0.747739 | False | golden_retriever | 1.057030e-01 | True | dingo | 1.725680e-02 | False |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1527 | 788908386943430656 | https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg | 1 | remote_control | 0.881538 | False | oscilloscope | 3.551310e-02 | False | golden_retriever | 3.408970e-02 | True |
| 1533 | 789986466051088384 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1536 | 790581949425475584 | https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg | 2 | refrigerator | 0.998886 | False | malinois | 1.529990e-04 | True | kelpie | 1.308170e-04 | True |
| 1538 | 790723298204217344 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1539 | 790946055508652032 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 1.131290e-04 | False | standard_poodle | 8.314510e-05 | True |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1556 | 793210959003287553 | https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg | 1 | doormat | 0.874431 | False | French_bulldog | 1.875910e-02 | True | Boston_bull | 1.513440e-02 | True |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | teddy | 0.569566 | False | bath_towel | 1.737450e-01 | False | toy_poodle | 3.766180e-02 | True |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/800018199223959552/pu/img/3Qp73edtkZO-qWPy.jpg | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1638 | 806629075125202948 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1640 | 807059379405148160 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1647 | 808733504066486276 | https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg | 1 | seat_belt | 0.779137 | False | toy_poodle | 3.692710e-02 | True | golden_retriever | 1.697250e-02 | True |
| 1664 | 812466873996607488 | https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg | 1 | bath_towel | 0.099804 | False | pillow | 9.231810e-02 | False | Great_Dane | 7.820550e-02 | True |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | dingo | 0.287369 | False | Pembroke | 1.406820e-01 | True | basenji | 9.081890e-02 | True |
| 1675 | 813157409116065792 | https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg | 2 | Siamese_cat | 0.843911 | False | Pembroke | 7.056710e-02 | True | Cardigan | 4.191600e-02 | True |
| 1676 | 813172488309972993 | https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg | 1 | doormat | 0.954844 | False | golden_retriever | 2.619310e-02 | True | cocker_spaniel | 4.385980e-03 | True |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1699 | 816829038950027264 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1705 | 817423860136083457 | https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1711 | 818536468981415936 | https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg | 1 | swing | 0.999403 | False | Welsh_springer_spaniel | 6.229490e-05 | True | bow | 3.046190e-05 | False |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1722 | 819711362133872643 | https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg | 2 | acorn_squash | 0.848704 | False | toilet_seat | 4.434840e-02 | False | toy_poodle | 2.200940e-02 | True |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/819924138965999617/pu/img/6OIToyT9eLESHXLU.jpg | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1745 | 822975315408461824 | https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg | 1 | bathtub | 0.331098 | False | tub | 2.488600e-01 | False | Pembroke | 2.331620e-01 | True |
| 1747 | 823322678127919110 | https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg | 2 | cowboy_boot | 0.990253 | False | Chihuahua | 1.836350e-03 | True | papillon | 1.273900e-03 | True |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | dingo | 0.280949 | False | German_shepherd | 1.940440e-01 | True | Pembroke | 1.200510e-01 | True |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1761 | 826115272272650244 | https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg | 1 | tennis_ball | 0.997071 | False | golden_retriever | 2.330850e-03 | True | kuvasz | 2.834720e-04 | True |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | teddy | 0.908457 | False | toy_poodle | 1.803980e-02 | True | standard_poodle | 1.266710e-02 | True |
| 1781 | 828708714936930305 | https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg | 1 | hippopotamus | 0.942911 | False | Mexican_hairless | 8.388370e-03 | True | ice_lolly | 6.206470e-03 | False |
| 1782 | 828770345708580865 | https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg | 1 | seat_belt | 0.765979 | False | Chesapeake_Bay_retriever | 3.389860e-02 | True | polecat | 2.725160e-02 | False |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1817 | 834086379323871233 | https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg | 1 | bath_towel | 0.736759 | False | sleeping_bag | 6.295910e-02 | False | Labrador_retriever | 4.526270e-02 | True |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1821 | 834574053763584002 | https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg | 1 | toilet_tissue | 0.262936 | False | golden_retriever | 2.265640e-01 | True | bathtub | 7.887900e-02 | False |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 1.964760e-01 | True | Irish_terrier | 7.309650e-02 | True |
| 1824 | 835152434251116546 | https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg | 3 | swing | 0.967066 | False | American_Staffordshire_terrier | 1.273090e-02 | True | Staffordshire_bullterrier | 7.039220e-03 | True |
| 1826 | 835264098648616962 | https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg | 2 | hyena | 0.736871 | False | Chesapeake_Bay_retriever | 8.750330e-02 | True | meerkat | 4.205780e-02 | False |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | mortarboard | 0.936882 | False | academic_gown | 2.081540e-02 | False | schipperke | 1.156350e-02 | True |
| 1834 | 836989968035819520 | https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg | 1 | shopping_cart | 0.572422 | False | shopping_basket | 4.140020e-01 | False | toy_poodle | 5.887300e-03 | True |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1848 | 839549326359670784 | https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg | 1 | swing | 0.393527 | False | Norwich_terrier | 5.248000e-02 | True | Pembroke | 4.990060e-02 | True |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1856 | 841439858740625411 | https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg | 3 | military_uniform | 0.853684 | False | Labrador_retriever | 4.819990e-02 | True | groenendael | 1.539440e-02 | True |
| 1858 | 841833993020538882 | https://pbs.twimg.com/ext_tw_video_thumb/817423809049493505/pu/img/5OFW0yueFu9oTUiQ.jpg | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1862 | 842765311967449089 | https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg | 1 | tub | 0.665238 | False | bucket | 1.051660e-01 | False | Labrador_retriever | 2.933990e-02 | True |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1872 | 844979544864018432 | https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg | 3 | tennis_ball | 0.999281 | False | racket | 3.700800e-04 | False | Shetland_sheepdog | 1.320680e-04 | True |
| 1881 | 847116187444137987 | https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg | 1 | white_wolf | 0.128935 | False | American_Staffordshire_terrier | 1.134340e-01 | True | dingo | 8.123140e-02 | False |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1896 | 850145622816686080 | https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg | 2 | tennis_ball | 0.714798 | False | kelpie | 1.053900e-01 | True | malinois | 5.855270e-02 | True |
| 1899 | 851224888060895234 | https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg | 3 | car_mirror | 0.971512 | False | seat_belt | 7.063460e-03 | False | standard_poodle | 5.682650e-03 | True |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1904 | 852189679701164033 | https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg | 1 | barrow | 0.423150 | False | Bernese_mountain_dog | 4.153740e-01 | True | EntleBucher | 6.734540e-02 | True |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/852223481894903808/pu/img/JWNq40ol4DXvHoUP.jpg | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg | 1 | Angora | 0.224218 | False | malamute | 2.161630e-01 | True | Persian_cat | 1.283830e-01 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1942 | 861288531465048066 | https://pbs.twimg.com/ext_tw_video_thumb/861288473281437696/pu/img/RERGmRgPyaaaB-tB.jpg | 1 | syringe | 0.144712 | False | oxygen_mask | 1.066840e-01 | False | Bouvier_des_Flandres | 8.261020e-02 | True |
| 1944 | 861769973181624320 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1970 | 868880397819494401 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 1984 | 872122724285648897 | https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg | 1 | basketball | 0.808396 | False | pug | 6.673630e-02 | True | dalmatian | 5.456980e-02 | True |
| 1992 | 873697596434513921 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2013 | 879376492567855104 | https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg | 1 | tricycle | 0.663601 | False | Labrador_retriever | 3.349610e-02 | True | Pembroke | 1.882660e-02 | True |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2026 | 882045870035918850 | https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg | 1 | web_site | 0.949591 | False | dhole | 1.732580e-02 | False | golden_retriever | 6.940630e-03 | True |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/887517108413886465/pu/img/WanJKwssZj4VJvL9.jpg | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 1.680860e-01 | True | spatula | 4.083590e-02 | False |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
#confirm the duplicated jpg_url are removed
sum(predictions_clean['jpg_url'].duplicated())
0
Now, we will:
Prepare the new column dog_status from p1_dog, p2_dog, and p3_dog with values True if status is 'dog' and False if status is not a dog.
The prediction column will be created from p1, p2, p3.
The corresponding prediction_num column with the prediction number (1, 2 or 3) will be created.
The dog_status True/False values and the the values in a new columns predition and prediction_num have to correspond with each other, so we will include mapping in the melting process.
# Melt the predictions_clean DataFrame to combine predictions and confidence scores
melted_predictions = predictions_clean.melt(
id_vars=['tweet_id', 'jpg_url', 'img_num'],
value_vars=['p1', 'p2', 'p3'],
var_name='prediction_num',
value_name='prediction'
)
melted_confidences = predictions_clean.melt(
id_vars=['tweet_id', 'jpg_url', 'img_num'],
value_vars=['p1_conf', 'p2_conf', 'p3_conf'],
var_name='confidence_num',
value_name='confidence'
)
melted_dog_status = predictions_clean.melt(
id_vars=['tweet_id', 'jpg_url', 'img_num'],
value_vars=['p1_dog', 'p2_dog', 'p3_dog'],
var_name='dog_status_num',
value_name='dog_status'
)
# Extract the digit from prediction_num, confidence_num, and dog_status_num to match correctly
melted_predictions['prediction_num'] = melted_predictions['prediction_num'].str.extract('(\d)').astype(int)
melted_confidences['confidence_num'] = melted_confidences['confidence_num'].str.extract('(\d)').astype(int)
melted_dog_status['dog_status_num'] = melted_dog_status['dog_status_num'].str.extract('(\d)').astype(int)
# Merge melted predictions, confidences, and dog_status DataFrames
melted_df = pd.merge(
melted_predictions,
melted_confidences,
left_on=['tweet_id', 'jpg_url', 'img_num', 'prediction_num'],
right_on=['tweet_id', 'jpg_url', 'img_num', 'confidence_num']
).drop(columns=['confidence_num'])
melted_df = pd.merge(
melted_df,
melted_dog_status,
left_on=['tweet_id', 'jpg_url', 'img_num', 'prediction_num'],
right_on=['tweet_id', 'jpg_url', 'img_num', 'dog_status_num']
).drop(columns=['dog_status_num'])
# Display the cleaned and transformed DataFrame to verify the operations
print("melted_df:")
print(melted_df.head(10))
melted_df:
tweet_id jpg_url \
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg
5 666050758794694657 https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg
6 666051853826850816 https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg
7 666055525042405380 https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg
8 666057090499244032 https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg
9 666058600524156928 https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg
img_num prediction_num prediction confidence dog_status
0 1 1 Welsh_springer_spaniel 0.465074 True
1 1 1 redbone 0.506826 True
2 1 1 German_shepherd 0.596461 True
3 1 1 Rhodesian_ridgeback 0.408143 True
4 1 1 miniature_pinscher 0.560311 True
5 1 1 Bernese_mountain_dog 0.651137 True
6 1 1 box_turtle 0.933012 False
7 1 1 chow 0.692517 True
8 1 1 shopping_cart 0.962465 False
9 1 1 miniature_poodle 0.201493 True
#check
melted_df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
#check
test = melted_df[melted_df['dog_status'] == False]['prediction'].value_counts()
test
seat_belt 45 teddy 41 doormat 32 Siamese_cat 29 dingo 27 ice_bear 19 bath_towel 17 tennis_ball 16 web_site 16 bathtub 16 hamster 15 llama 14 white_wolf 14 tub 14 muzzle 13 guinea_pig 13 hog 13 swing 12 Arctic_fox 12 weasel 11 sea_lion 10 ram 9 Arabian_camel 9 sunglasses 9 black-footed_ferret 9 koala 9 fountain 8 shopping_cart 8 badger 8 Christmas_stocking 8 toilet_tissue 8 Angora 8 ox 8 lakeside 7 sandbar 7 feather_boa 7 minivan 7 quilt 7 bow_tie 7 fur_coat 7 wallaby 7 hen 7 wood_rabbit 7 Persian_cat 7 home_theater 6 hippopotamus 6 washbasin 6 paper_towel 6 wombat 6 ice_lolly 6 meerkat 6 toilet_seat 6 car_mirror 6 swab 6 shopping_basket 6 prison 6 jigsaw_puzzle 6 water_buffalo 6 carton 6 porcupine 6 goose 6 space_heater 6 shower_curtain 6 ski_mask 6 pillow 5 brown_bear 5 terrapin 5 bubble 5 beaver 5 patio 5 bison 5 barrow 5 dishwasher 5 box_turtle 5 dhole 5 triceratops 5 macaque 5 window_screen 5 mink 5 wool 5 gibbon 5 beach_wagon 5 seashore 5 television 5 toyshop 5 common_iguana 5 skunk 5 three-toed_sloth 5 American_black_bear 5 paddle 5 studio_couch 5 polecat 5 racket 4 menu 4 sombrero 4 cash_machine 4 bagel 4 envelope 4 wig 4 warthog 4 mask 4 snorkel 4 minibus 4 limousine 4 bookcase 4 sliding_door 4 sundial 4 crane 4 giant_panda 4 cougar 4 rotisserie 4 mousetrap 4 tabby 4 marmot 4 microwave 4 hare 4 snail 4 frilled_lizard 4 vacuum 4 chimpanzee 4 refrigerator 4 window_shade 4 Egyptian_cat 3 agama 3 rhinoceros_beetle 3 quill 3 four-poster 3 tailed_frog 3 otter 3 goldfish 3 ashcan 3 slug 3 leafhopper 3 jaguar 3 bighorn 3 umbrella 3 bib 3 bathing_cap 3 axolotl 3 loggerhead 3 comic_book 3 scuba_diver 3 cowboy_boot 3 coral_reef 3 convertible 3 king_penguin 3 boathouse 3 orange 3 echidna 3 balloon 3 canoe 3 cliff 3 cup 3 jack-o'-lantern 3 gorilla 3 entertainment_center 3 nail 3 bannister 3 grey_fox 3 mongoose 3 soccer_ball 3 hyena 3 birdhouse 3 cowboy_hat 3 Indian_elephant 3 crossword_puzzle 3 bucket 3 rain_barrel 3 prayer_rug 3 stone_wall 3 printer 3 motor_scooter 3 bow 3 beacon 2 lampshade 2 pickup 2 abaya 2 corn 2 punching_bag 2 tow_truck 2 sunglass 2 chain_saw 2 wreck 2 cock 2 oscilloscope 2 great_white_shark 2 dugong 2 shovel 2 basketball 2 laptop 2 hand-held_computer 2 bearskin 2 purse 2 barbell 2 bustard 2 lumbermill 2 pizza 2 restaurant 2 wallet 2 loupe 2 Windsor_tie 2 bolete 2 hay 2 hatchet 2 rifle 2 pier 2 radiator 2 cloak 2 assault_rifle 2 shower_cap 2 desktop_computer 2 coyote 2 barrel 2 moped 2 bakery 2 mosquito_net 2 sports_car 2 ibex 2 neck_brace 2 electric_fan 2 spatula 2 shoji 2 bassinet 2 can_opener 2 sleeping_bag 2 mouse 2 cab 2 titi 2 leatherback_turtle 2 screw 2 common_newt 2 plow 2 car_wheel 2 jellyfish 2 American_alligator 2 wild_boar 2 traffic_light 2 hermit_crab 2 snowmobile 2 zebra 2 geyser 2 African_hunting_dog 2 dining_table 2 hummingbird 2 banana 2 hotdog 2 timber_wolf 2 peacock 2 bonnet 2 handkerchief 2 hand_blower 2 sorrel 2 lawn_mower 2 sea_urchin 2 snow_leopard 2 park_bench 2 Loafer 2 tusker 2 acorn_squash 2 tick 2 street_sign 2 stove 2 water_bottle 2 file 2 book_jacket 2 dogsled 2 cheetah 2 maze 2 panpipe 2 gondola 2 mailbox 2 ostrich 2 killer_whale 2 china_cabinet 2 rapeseed 2 squirrel_monkey 2 pot 2 Madagascar_cat 2 platypus 2 brass 2 pool_table 2 padlock 2 cuirass 2 maillot 2 conch 2 mud_turtle 2 lion 2 binoculars 2 African_grey 2 green_lizard 1 rule 1 parallel_bars 1 paddlewheel 1 dam 1 broccoli 1 theater_curtain 1 maraca 1 notebook 1 greenhouse 1 tiger_cat 1 coho 1 dumbbell 1 projectile 1 tripod 1 dock 1 paintbrush 1 soap_dispenser 1 academic_gown 1 chest 1 orangutan 1 jean 1 eel 1 go-kart 1 black_widow 1 necklace 1 rock_crab 1 cradle 1 coffeepot 1 binder 1 whiptail 1 grand_piano 1 lighter 1 saltshaker 1 harvester 1 grocery_store 1 guillotine 1 house_finch 1 bullfrog 1 palace 1 switch 1 chain 1 French_loaf 1 oxygen_mask 1 chickadee 1 croquet_ball 1 wolf_spider 1 viaduct 1 plunger 1 valley 1 European_fire_salamander 1 wing 1 pajama 1 passenger_car 1 cardoon 1 crayfish 1 nipple 1 stinkhorn 1 jersey 1 drumstick 1 plastic_bag 1 swimming_trunks 1 sea_cucumber 1 prairie_chicken 1 red_wolf 1 black_swan 1 hammerhead 1 consomme 1 poncho 1 bulletproof_vest 1 balance_beam 1 steam_locomotive 1 jeep 1 joystick 1 mitten 1 buckeye 1 golfcart 1 partridge 1 great_grey_owl 1 gar 1 power_drill 1 acorn 1 oxcart 1 mountain_tent 1 mushroom 1 African_chameleon 1 Band_Aid 1 French_horn 1 ballplayer 1 space_shuttle 1 bell_cote 1 wok 1 kimono 1 parachute 1 chime 1 pretzel 1 robin 1 confectionery 1 leopard 1 bookshop 1 radio_telescope 1 piggy_bank 1 candle 1 long-horned_beetle 1 lynx 1 remote_control 1 pedestal 1 gas_pump 1 shield 1 crash_helmet 1 school_bus 1 wooden_spoon 1 mortarboard 1 hamper 1 teapot 1 military_uniform 1 washer 1 grille 1 revolver 1 syringe 1 pole 1 tricycle 1 desk 1 barracouta 1 armadillo 1 drake 1 spotlight 1 sulphur-crested_cockatoo 1 tiger_shark 1 ping-pong_ball 1 coil 1 suit 1 African_crocodile 1 ocarina 1 upright 1 dough 1 leaf_beetle 1 walking_stick 1 guenon 1 starfish 1 harp 1 earthstar 1 bee_eater 1 carousel 1 bald_eagle 1 clog 1 damselfly 1 cheeseburger 1 fiddler_crab 1 picket_fence 1 pitcher 1 microphone 1 flamingo 1 scorpion 1 lacewing 1 espresso 1 hammer 1 alp 1 cornet 1 pelican 1 volcano 1 banded_gecko 1 crib 1 streetcar 1 fire_engine 1 hair_slide 1 cannon 1 apron 1 torch 1 spindle 1 medicine_chest 1 quail 1 horse_cart 1 red_fox 1 mashed_potato 1 tree_frog 1 toaster 1 turnstile 1 Gila_monster 1 coffee_mug 1 sock 1 chain_mail 1 breakwater 1 computer_keyboard 1 solar_dish 1 table_lamp 1 barbershop 1 lesser_panda 1 monitor 1 crutch 1 junco 1 trench_coat 1 folding_chair 1 lorikeet 1 knee_pad 1 waffle_iron 1 police_van 1 breastplate 1 hair_spray 1 tray 1 spotted_salamander 1 cardigan 1 European_gallinule 1 indri 1 siamang 1 sulphur_butterfly 1 tarantula 1 coral_fungus 1 accordion 1 tiger 1 trombone 1 toucan 1 crate 1 grey_whale 1 cockroach 1 lifeboat 1 stingray 1 bobsled 1 promontory 1 sarong 1 sandal 1 barber_chair 1 Name: prediction, dtype: int64
# check
melted_df['prediction_num'].value_counts()
1 1994 2 1994 3 1994 Name: prediction_num, dtype: int64
#check
test = melted_df.query('dog_status == True')['prediction']
test
0 Welsh_springer_spaniel 1 redbone 2 German_shepherd 3 Rhodesian_ridgeback 4 miniature_pinscher 5 Bernese_mountain_dog 7 chow 9 miniature_poodle 10 golden_retriever 11 Gordon_setter 12 Walker_hound 13 pug 14 bloodhound 15 Lhasa 16 English_setter 19 Italian_greyhound 20 Maltese_dog 23 golden_retriever 24 malamute 26 soft-coated_wheaten_terrier 27 Chihuahua 28 black-and-tan_coonhound 30 toy_terrier 31 Blenheim_spaniel 32 Pembroke 34 Chesapeake_Bay_retriever 35 Chihuahua 36 curly-coated_retriever 37 dalmatian 38 Ibizan_hound 39 Border_collie 40 German_shepherd 41 Labrador_retriever 42 miniature_poodle 44 Italian_greyhound 46 English_setter 47 miniature_schnauzer 48 Maltese_dog 49 Airedale 54 golden_retriever 55 Chesapeake_Bay_retriever 57 Chihuahua 58 Chihuahua 59 Pembroke 60 West_Highland_white_terrier 61 toy_poodle 62 golden_retriever 63 miniature_pinscher 64 giant_schnauzer 65 toy_poodle 66 soft-coated_wheaten_terrier 67 vizsla 68 golden_retriever 70 Rottweiler 71 Siberian_husky 72 golden_retriever 74 papillon 75 Saint_Bernard 76 Rottweiler 79 Labrador_retriever 80 Tibetan_terrier 81 toy_poodle 82 borzoi 83 Chihuahua 84 Labrador_retriever 85 beagle 86 Italian_greyhound 88 golden_retriever 89 Pembroke 90 Yorkshire_terrier 91 Pomeranian 92 toy_poodle 95 kuvasz 97 West_Highland_white_terrier 99 dalmatian 100 flat-coated_retriever 102 miniature_pinscher 103 malamute 107 malamute 108 Pomeranian 109 Norwegian_elkhound 112 Labrador_retriever 114 Pembroke 117 Chihuahua 118 Blenheim_spaniel 119 Labrador_retriever 120 chow 122 chow 123 Chihuahua 125 Pembroke 126 soft-coated_wheaten_terrier 127 golden_retriever 132 standard_poodle 133 Staffordshire_bullterrier 134 basenji 135 Labrador_retriever 136 Lakeland_terrier 137 American_Staffordshire_terrier 139 Shih-Tzu 142 Chihuahua 144 French_bulldog 145 miniature_schnauzer 146 Pekinese 147 komondor 151 beagle 152 Chesapeake_Bay_retriever 153 redbone 154 malinois 155 golden_retriever 157 kelpie 158 Brittany_spaniel 159 standard_poodle 160 cocker_spaniel 162 basset 163 golden_retriever 167 pug 170 Pembroke 171 Chihuahua 173 Chihuahua 174 pug 176 golden_retriever 178 golden_retriever 179 Siberian_husky 182 Chihuahua 183 Labrador_retriever 184 golden_retriever 185 basset 186 Brabancon_griffon 187 Airedale 188 cocker_spaniel 189 toy_poodle 190 Chihuahua 192 West_Highland_white_terrier 194 Eskimo_dog 195 Maltese_dog 198 dalmatian 200 Pomeranian 202 Pembroke 204 Pomeranian 205 vizsla 206 miniature_pinscher 209 beagle 212 Blenheim_spaniel 214 Italian_greyhound 216 malamute 218 German_short-haired_pointer 219 toy_poodle 220 Chihuahua 221 Shetland_sheepdog 222 Irish_terrier 223 cairn 225 English_springer 226 whippet 227 pug 229 Maltese_dog 232 Chihuahua 234 chow 238 Sussex_spaniel 239 English_springer 246 Dandie_Dinmont 247 Ibizan_hound 248 Shetland_sheepdog 249 Norwich_terrier 250 Pomeranian 253 keeshond 254 Norfolk_terrier 255 pug 256 Labrador_retriever 257 Chihuahua 260 beagle 262 Pembroke 263 basenji 264 Pomeranian 265 Old_English_sheepdog 266 basset 267 American_Staffordshire_terrier 269 Labrador_retriever 271 malinois 272 Pekinese 274 Shih-Tzu 276 redbone 277 basenji 278 malinois 280 Shih-Tzu 281 Samoyed 283 Yorkshire_terrier 284 Rottweiler 285 Labrador_retriever 289 Rottweiler 290 Chihuahua 292 miniature_poodle 293 Italian_greyhound 296 Samoyed 297 German_shepherd 300 toy_poodle 302 Lakeland_terrier 303 Pomeranian 304 Doberman 306 pug 308 Shetland_sheepdog 311 Gordon_setter 312 kuvasz 314 toy_poodle 317 Chihuahua 318 dalmatian 320 Labrador_retriever 324 Labrador_retriever 325 chow 326 pug 328 pug 330 Rottweiler 331 pug 332 cocker_spaniel 334 beagle 336 pug 337 Chihuahua 338 Irish_terrier 339 pug 341 Chihuahua 342 Irish_terrier 343 pug 344 cocker_spaniel 346 Border_collie 347 West_Highland_white_terrier 348 Doberman 349 golden_retriever 352 kuvasz 353 Great_Pyrenees 354 toy_poodle 357 golden_retriever 358 Chesapeake_Bay_retriever 360 Pembroke 361 Chihuahua 365 Chihuahua 366 toy_poodle 368 pug 371 Lakeland_terrier 372 French_bulldog 373 chow 375 schipperke 376 Airedale 377 Shih-Tzu 378 golden_retriever 379 miniature_pinscher 380 Samoyed 382 Chihuahua 384 West_Highland_white_terrier 385 golden_retriever 386 Rottweiler 387 English_setter 390 beagle 392 Newfoundland 394 bull_mastiff 395 Labrador_retriever 396 Samoyed 397 Pekinese 398 soft-coated_wheaten_terrier 399 Chesapeake_Bay_retriever 402 Shih-Tzu 403 German_short-haired_pointer 404 golden_retriever 405 Chihuahua 406 Maltese_dog 408 Brabancon_griffon 411 pug 413 Pembroke 414 collie 415 Pomeranian 416 toy_poodle 417 Eskimo_dog 418 toy_poodle 420 Shih-Tzu 421 Cardigan 423 Airedale 424 Pomeranian 425 Eskimo_dog 426 Greater_Swiss_Mountain_dog 428 pug 429 German_shepherd 430 Cardigan 435 Chihuahua 436 golden_retriever 438 Brabancon_griffon 439 chow 441 Pomeranian 443 flat-coated_retriever 445 malamute 447 Pomeranian 448 Dandie_Dinmont 449 Bernese_mountain_dog 450 vizsla 452 Samoyed 454 Chihuahua 456 miniature_poodle 457 Labrador_retriever 458 giant_schnauzer 459 Pembroke 460 English_springer 461 Rottweiler 462 Pembroke 463 boxer 465 Samoyed 466 dalmatian 467 Labrador_retriever 470 Labrador_retriever 472 golden_retriever 473 chow 476 Pembroke 477 borzoi 479 Labrador_retriever 480 Chihuahua 481 Labrador_retriever 483 West_Highland_white_terrier 484 vizsla 486 Scottish_deerhound 487 cocker_spaniel 488 Pembroke 489 chow 490 English_springer 492 standard_schnauzer 493 golden_retriever 494 Maltese_dog 495 beagle 496 basset 497 Pomeranian 498 pug 499 Labrador_retriever 500 golden_retriever 502 West_Highland_white_terrier 503 Italian_greyhound 504 Labrador_retriever 505 bull_mastiff 507 Shih-Tzu 508 Irish_water_spaniel 509 Chihuahua 512 French_bulldog 514 golden_retriever 515 Maltese_dog 516 golden_retriever 517 pug 518 chow 521 Boston_bull 522 whippet 525 Chihuahua 527 Chihuahua 529 Great_Pyrenees 530 Chesapeake_Bay_retriever 532 Chesapeake_Bay_retriever 534 Pekinese 536 Welsh_springer_spaniel 537 Labrador_retriever 538 malamute 539 English_setter 541 Shetland_sheepdog 542 Japanese_spaniel 543 Blenheim_spaniel 545 beagle 546 Lakeland_terrier 547 Staffordshire_bullterrier 548 American_Staffordshire_terrier 550 basset 552 Chihuahua 554 Maltese_dog 555 Pembroke 556 Shih-Tzu 557 Siberian_husky 559 dalmatian 560 Eskimo_dog 561 miniature_pinscher 562 Chihuahua 563 Maltese_dog 564 Norfolk_terrier 565 golden_retriever 567 miniature_pinscher 568 Pembroke 570 schipperke 571 Maltese_dog 572 Staffordshire_bullterrier 573 Labrador_retriever 576 malamute 577 Irish_terrier 579 Pembroke 580 Airedale 581 Labrador_retriever 582 Labrador_retriever 583 Eskimo_dog 586 kelpie 587 Scottish_deerhound 588 Italian_greyhound 589 pug 590 toy_poodle 591 Maltese_dog 593 Chihuahua 595 dalmatian 596 boxer 598 French_bulldog 599 bloodhound 600 Chihuahua 601 Airedale 603 EntleBucher 605 Samoyed 608 golden_retriever 609 pug 610 Maltese_dog 611 miniature_poodle 612 bluetick 614 Brittany_spaniel 618 Lakeland_terrier 619 kuvasz 620 Chihuahua 622 French_bulldog 624 pug 625 Pembroke 626 Shetland_sheepdog 627 Pomeranian 628 Labrador_retriever 629 soft-coated_wheaten_terrier 631 pug 632 Pomeranian 633 Irish_setter 635 Tibetan_terrier 636 Saint_Bernard 637 Lhasa 639 Samoyed 641 Norfolk_terrier 642 Rottweiler 643 toy_poodle 644 Pomeranian 646 toy_poodle 647 Chihuahua 648 Labrador_retriever 650 schipperke 654 Siberian_husky 656 curly-coated_retriever 657 vizsla 659 whippet 660 English_springer 661 beagle 663 English_setter 666 boxer 668 golden_retriever 669 cocker_spaniel 670 Leonberg 671 Pembroke 672 French_bulldog 673 Lakeland_terrier 674 Italian_greyhound 675 keeshond 676 Airedale 677 Pembroke 678 miniature_pinscher 679 malamute 680 Maltese_dog 682 toy_poodle 683 bluetick 684 Labrador_retriever 686 chow 687 kelpie 688 Chihuahua 690 soft-coated_wheaten_terrier 691 golden_retriever 692 Pembroke 693 Labrador_retriever 694 Chihuahua 695 Chihuahua 697 Weimaraner 698 miniature_schnauzer 700 Pembroke 702 Labrador_retriever 703 Border_collie 705 Bernese_mountain_dog 707 pug 708 Pomeranian 709 chow 710 Boston_bull 711 golden_retriever 714 Lakeland_terrier 715 Chesapeake_Bay_retriever 717 Yorkshire_terrier 718 papillon 719 Siberian_husky 721 Rhodesian_ridgeback 722 Great_Dane 723 Pomeranian 724 pug 725 German_shepherd 726 Yorkshire_terrier 727 Labrador_retriever 728 Rottweiler 729 Norwich_terrier 730 Tibetan_mastiff 733 Labrador_retriever 735 borzoi 737 pug 739 Shih-Tzu 740 Boston_bull 742 English_springer 743 Rottweiler 744 pug 745 miniature_pinscher 746 Staffordshire_bullterrier 747 Lakeland_terrier 748 Pomeranian 749 Eskimo_dog 750 pug 753 golden_retriever 754 Pembroke 755 papillon 756 American_Staffordshire_terrier 757 malinois 758 Cardigan 760 Ibizan_hound 762 Pembroke 763 English_springer 764 cocker_spaniel 765 American_Staffordshire_terrier 766 Chihuahua 767 Scotch_terrier 769 Pembroke 770 Eskimo_dog 772 toy_poodle 774 Italian_greyhound 775 collie 776 Old_English_sheepdog 777 Pomeranian 779 standard_poodle 780 Samoyed 781 malamute 784 pug 785 kuvasz 786 Pembroke 787 Lhasa 790 kuvasz 791 golden_retriever 794 golden_retriever 796 borzoi 797 Rottweiler 798 Lakeland_terrier 799 Bernese_mountain_dog 800 Shetland_sheepdog 801 bloodhound 802 Chihuahua 803 Saint_Bernard 805 Tibetan_terrier 806 toy_poodle 807 pug 808 Siberian_husky 810 Siberian_husky 811 pug 812 golden_retriever 813 Samoyed 814 Samoyed 815 German_short-haired_pointer 816 soft-coated_wheaten_terrier 817 Mexican_hairless 818 Saint_Bernard 820 cocker_spaniel 821 Shih-Tzu 822 vizsla 823 golden_retriever 824 Labrador_retriever 827 malamute 828 pug 829 Scottish_deerhound 831 groenendael 832 Pembroke 834 Shih-Tzu 835 boxer 836 Australian_terrier 840 Boston_bull 842 Shih-Tzu 843 papillon 844 Maltese_dog 845 pug 846 basenji 847 Old_English_sheepdog 848 soft-coated_wheaten_terrier 849 Samoyed 850 Pomeranian 851 borzoi 852 briard 856 kuvasz 857 Appenzeller 858 Chihuahua 860 Great_Dane 861 Great_Dane 862 toy_poodle 863 Labrador_retriever 866 Shetland_sheepdog 867 Lhasa 869 Great_Dane 870 Pembroke 871 Staffordshire_bullterrier 872 Chesapeake_Bay_retriever 873 Labrador_retriever 874 Italian_greyhound 875 boxer 876 pug 877 French_bulldog 878 Samoyed 879 Brittany_spaniel 880 Samoyed 881 German_short-haired_pointer 882 Italian_greyhound 883 Norfolk_terrier 884 Chihuahua 885 Shih-Tzu 886 schipperke 888 Labrador_retriever 889 cairn 890 Samoyed 891 pug 892 golden_retriever 893 Pembroke 895 Dandie_Dinmont 896 malinois 897 Border_terrier 898 golden_retriever 899 Chihuahua 900 West_Highland_white_terrier 902 golden_retriever 904 beagle 907 American_Staffordshire_terrier 908 Great_Pyrenees 910 Rhodesian_ridgeback 911 kuvasz 913 Chihuahua 914 Border_collie 915 Yorkshire_terrier 916 Chihuahua 917 French_bulldog 918 toy_poodle 919 Pomeranian 920 golden_retriever 921 Boston_bull 922 West_Highland_white_terrier 923 Pomeranian 924 kelpie 925 bloodhound 926 golden_retriever 929 Pembroke 931 Border_collie 932 golden_retriever 934 miniature_pinscher 935 Pembroke 937 boxer 938 Labrador_retriever 939 Great_Pyrenees 942 Pembroke 943 Samoyed 944 Chihuahua 947 golden_retriever 948 pug 949 Norfolk_terrier 950 Airedale 951 collie 953 Chihuahua 954 Chihuahua 955 Great_Pyrenees 956 golden_retriever 957 basenji 959 collie 960 golden_retriever 961 Staffordshire_bullterrier 962 Samoyed 963 papillon 964 Border_terrier 965 Pembroke 966 Tibetan_mastiff 967 golden_retriever 968 chow 971 toy_poodle 973 Chihuahua 974 cocker_spaniel 975 pug 976 Samoyed 977 Blenheim_spaniel 978 Bernese_mountain_dog 979 golden_retriever 980 Chihuahua 981 Lakeland_terrier 983 golden_retriever 985 whippet 986 miniature_pinscher 987 toy_poodle 989 malinois 990 Staffordshire_bullterrier 991 Norwich_terrier 992 French_bulldog 993 Cardigan 995 pug 996 Chihuahua 997 Shih-Tzu 999 Pomeranian 1000 golden_retriever 1001 Eskimo_dog 1002 schipperke 1004 Siberian_husky 1005 borzoi 1006 Chihuahua 1007 Labrador_retriever 1008 Shetland_sheepdog 1009 Maltese_dog 1010 cocker_spaniel 1011 golden_retriever 1012 chow 1013 Chihuahua 1015 Pembroke 1016 toy_poodle 1017 Pekinese 1019 pug 1020 Old_English_sheepdog 1021 Shih-Tzu 1022 Pembroke 1023 soft-coated_wheaten_terrier 1024 Pembroke 1026 malamute 1027 French_bulldog 1029 Pembroke 1033 Lakeland_terrier 1036 Shih-Tzu 1038 Labrador_retriever 1040 Labrador_retriever 1041 Great_Pyrenees 1042 Labrador_retriever 1044 whippet 1045 Great_Pyrenees 1046 Brittany_spaniel 1047 golden_retriever 1048 Siberian_husky 1049 Labrador_retriever 1050 pug 1051 soft-coated_wheaten_terrier 1052 collie 1053 Norfolk_terrier 1055 Great_Pyrenees 1056 Brittany_spaniel 1058 Chihuahua 1059 Chihuahua 1060 West_Highland_white_terrier 1062 golden_retriever 1063 Staffordshire_bullterrier 1064 Dandie_Dinmont 1065 pug 1066 golden_retriever 1067 Yorkshire_terrier 1068 Siberian_husky 1069 Pomeranian 1070 malinois 1071 Siberian_husky 1072 golden_retriever 1073 miniature_pinscher 1074 golden_retriever 1076 Brittany_spaniel 1077 malamute 1078 Chihuahua 1081 Maltese_dog 1082 Labrador_retriever 1083 Pomeranian 1084 Pembroke 1085 golden_retriever 1086 Dandie_Dinmont 1087 golden_retriever 1089 malamute 1091 golden_retriever 1092 Samoyed 1093 Mexican_hairless 1095 Pembroke 1096 Rottweiler 1097 Newfoundland 1098 Chihuahua 1099 Samoyed 1100 Pomeranian 1101 Labrador_retriever 1102 Great_Dane 1104 golden_retriever 1106 Samoyed 1108 boxer 1109 Border_collie 1110 golden_retriever 1111 German_short-haired_pointer 1112 golden_retriever 1113 boxer 1114 chow 1115 toy_poodle 1116 standard_poodle 1117 miniature_pinscher 1118 soft-coated_wheaten_terrier 1120 flat-coated_retriever 1122 toy_poodle 1123 Pomeranian 1124 Great_Pyrenees 1125 Border_collie 1126 cocker_spaniel 1128 Newfoundland 1129 collie 1132 Saint_Bernard 1133 Pembroke 1134 Maltese_dog 1136 German_shepherd 1137 kelpie 1141 pug 1142 Eskimo_dog 1143 American_Staffordshire_terrier 1146 Pembroke 1147 English_setter 1149 Staffordshire_bullterrier 1150 Pomeranian 1152 golden_retriever 1153 chow 1154 French_bulldog 1155 Lhasa 1156 beagle 1157 Siberian_husky 1158 golden_retriever 1159 Maltese_dog 1160 Walker_hound 1161 Staffordshire_bullterrier 1163 pug 1164 Pembroke 1165 cocker_spaniel 1166 golden_retriever 1167 Labrador_retriever 1169 schipperke 1172 Samoyed 1173 Pembroke 1174 malamute 1175 vizsla 1176 pug 1177 keeshond 1178 Bedlington_terrier 1179 cocker_spaniel 1180 chow 1181 Labrador_retriever 1183 Eskimo_dog 1184 Walker_hound 1185 Labrador_retriever 1186 Blenheim_spaniel 1187 toy_poodle 1188 redbone 1189 Irish_water_spaniel 1190 Chesapeake_Bay_retriever 1191 golden_retriever 1193 golden_retriever 1196 toy_poodle 1197 malamute 1198 golden_retriever 1199 Chihuahua 1200 Chesapeake_Bay_retriever 1201 Labrador_retriever 1202 kuvasz 1205 Cardigan 1206 pug 1209 golden_retriever 1210 kuvasz 1211 malamute 1215 Weimaraner 1216 dalmatian 1217 bull_mastiff 1218 Labrador_retriever 1219 Samoyed 1220 Shetland_sheepdog 1221 toy_poodle 1222 Old_English_sheepdog 1223 Shetland_sheepdog 1225 Labrador_retriever 1228 Pekinese 1229 Shetland_sheepdog 1230 chow 1231 German_shepherd 1232 toy_poodle 1233 golden_retriever 1234 Boston_bull 1236 Pembroke 1238 Labrador_retriever 1240 Shetland_sheepdog 1242 Cardigan 1243 basenji 1244 Chesapeake_Bay_retriever 1245 Pembroke 1246 Pembroke 1247 kuvasz 1248 Samoyed 1249 kelpie 1251 Shetland_sheepdog 1252 borzoi 1253 Tibetan_terrier 1256 Pembroke 1258 borzoi 1259 German_short-haired_pointer 1261 pug 1262 wire-haired_fox_terrier 1263 Pomeranian 1264 Chesapeake_Bay_retriever 1265 papillon 1266 Pekinese 1268 Old_English_sheepdog 1270 standard_poodle 1271 Labrador_retriever 1272 Saluki 1273 redbone 1274 pug 1275 golden_retriever 1276 Shih-Tzu 1277 toy_poodle 1278 pug 1279 Border_collie 1280 golden_retriever 1282 Pembroke 1283 toy_poodle 1284 Labrador_retriever 1285 Labrador_retriever 1286 Walker_hound 1287 golden_retriever 1288 Labrador_retriever 1289 dalmatian 1290 toy_poodle 1291 chow 1292 Lakeland_terrier 1293 Labrador_retriever 1294 Bedlington_terrier 1297 German_shepherd 1298 German_shepherd 1299 Pembroke 1300 chow 1301 bluetick 1302 whippet 1304 miniature_pinscher 1305 French_bulldog 1306 chow 1307 beagle 1310 golden_retriever 1311 Labrador_retriever 1313 Pekinese 1314 Airedale 1316 golden_retriever 1318 Pembroke 1319 golden_retriever 1320 golden_retriever 1321 Italian_greyhound 1322 Labrador_retriever 1325 bluetick 1329 Pembroke 1330 Chesapeake_Bay_retriever 1331 Labrador_retriever 1332 Pembroke 1333 Chesapeake_Bay_retriever 1334 Chesapeake_Bay_retriever 1336 Labrador_retriever 1337 Shetland_sheepdog 1338 kuvasz 1339 kuvasz 1340 golden_retriever 1341 golden_retriever 1342 Sussex_spaniel 1343 Labrador_retriever 1346 Old_English_sheepdog 1347 Samoyed 1349 golden_retriever 1350 Blenheim_spaniel 1351 golden_retriever 1353 standard_poodle 1354 Norwegian_elkhound 1355 Gordon_setter 1358 Labrador_retriever 1361 chow 1362 Samoyed 1363 kelpie 1365 miniature_poodle 1366 malamute 1367 German_shepherd 1368 Bernese_mountain_dog 1369 dalmatian 1370 golden_retriever 1371 Pembroke 1372 beagle 1373 golden_retriever 1374 Welsh_springer_spaniel 1375 redbone 1376 toy_poodle 1377 keeshond 1378 Doberman 1379 beagle 1380 toy_poodle 1382 chow 1383 vizsla 1386 Labrador_retriever 1387 Great_Pyrenees 1388 basenji 1389 chow 1390 Pomeranian 1391 golden_retriever 1392 pug 1393 miniature_pinscher 1394 Boston_bull 1395 Italian_greyhound 1398 chow 1399 Bernese_mountain_dog 1401 Labrador_retriever 1403 collie 1404 Labrador_retriever 1405 papillon 1406 Pembroke 1407 Chihuahua 1408 Labrador_retriever 1409 golden_retriever 1410 Pembroke 1411 Newfoundland 1412 basset 1414 Blenheim_spaniel 1417 Norwegian_elkhound 1418 Old_English_sheepdog 1419 silky_terrier 1420 Pomeranian 1422 Eskimo_dog 1423 Walker_hound 1424 toy_poodle 1425 chow 1426 beagle 1429 chow 1432 Rottweiler 1433 Samoyed 1434 Labrador_retriever 1435 toy_poodle 1436 Chihuahua 1437 chow 1438 cocker_spaniel 1439 Afghan_hound 1440 clumber 1441 German_shepherd 1442 Boston_bull 1443 collie 1444 Pembroke 1445 Airedale 1446 German_shepherd 1447 Staffordshire_bullterrier 1448 cocker_spaniel 1449 Chihuahua 1450 toy_poodle 1452 golden_retriever 1453 vizsla 1454 Great_Dane 1455 golden_retriever 1456 Saint_Bernard 1457 Siberian_husky 1458 Chesapeake_Bay_retriever 1460 Shetland_sheepdog 1461 Mexican_hairless 1463 Pembroke 1465 briard 1466 malamute 1467 Irish_setter 1468 golden_retriever 1470 Chesapeake_Bay_retriever 1471 Cardigan 1472 Norwegian_elkhound 1473 Chihuahua 1474 chow 1475 Lakeland_terrier 1477 miniature_poodle 1478 malamute 1479 chow 1482 miniature_pinscher 1484 Great_Pyrenees 1486 Labrador_retriever 1487 golden_retriever 1488 Pembroke 1489 Leonberg 1490 Pomeranian 1491 golden_retriever 1493 Chihuahua 1494 German_shepherd 1495 pug 1497 chow 1498 Samoyed 1499 golden_retriever 1500 cocker_spaniel 1502 Chihuahua 1503 malamute 1504 schipperke 1505 Chesapeake_Bay_retriever 1506 chow 1508 Labrador_retriever 1509 Pembroke 1511 Bernese_mountain_dog 1513 cocker_spaniel 1514 miniature_pinscher 1515 Pembroke 1516 golden_retriever 1517 komondor 1518 cocker_spaniel 1519 Yorkshire_terrier 1522 Labrador_retriever 1524 Italian_greyhound 1525 golden_retriever 1526 Lakeland_terrier 1527 Labrador_retriever 1529 wire-haired_fox_terrier 1530 golden_retriever 1531 basset 1532 Siberian_husky 1533 Afghan_hound 1534 golden_retriever 1535 miniature_pinscher 1536 Old_English_sheepdog 1537 Labrador_retriever 1539 Samoyed 1542 golden_retriever 1543 golden_retriever 1544 golden_retriever 1545 chow 1546 Cardigan 1547 golden_retriever 1548 Pekinese 1549 cocker_spaniel 1550 American_Staffordshire_terrier 1551 Cardigan 1552 collie 1553 Pembroke 1554 American_Staffordshire_terrier 1555 Pekinese 1556 West_Highland_white_terrier 1557 Siberian_husky 1558 Norfolk_terrier 1559 malamute 1560 miniature_pinscher 1561 Border_collie 1563 golden_retriever 1564 golden_retriever 1566 Pembroke 1567 cocker_spaniel 1568 dalmatian 1569 cocker_spaniel 1571 Pembroke 1572 Staffordshire_bullterrier 1573 Eskimo_dog 1574 Labrador_retriever 1576 golden_retriever 1577 chow 1578 Pembroke 1580 Labrador_retriever 1581 miniature_pinscher 1583 Tibetan_mastiff 1584 Pembroke 1586 malinois 1587 Siberian_husky 1588 Norwegian_elkhound 1589 chow 1590 vizsla 1592 golden_retriever 1593 Chihuahua 1594 golden_retriever 1595 Labrador_retriever 1596 golden_retriever 1597 Airedale 1599 Rottweiler 1600 vizsla 1601 Pomeranian 1602 Greater_Swiss_Mountain_dog 1603 Norwich_terrier 1604 Staffordshire_bullterrier 1605 malamute 1606 malamute 1607 flat-coated_retriever 1608 golden_retriever 1609 Pembroke 1610 beagle 1611 Pekinese 1612 Staffordshire_bullterrier 1613 golden_retriever 1616 Irish_setter 1617 bull_mastiff 1618 golden_retriever 1619 toy_terrier 1620 Doberman 1621 Great_Dane 1623 Norwegian_elkhound 1624 beagle 1627 golden_retriever 1628 cocker_spaniel 1629 Samoyed 1630 malamute 1631 French_bulldog 1632 Siberian_husky 1633 golden_retriever 1634 miniature_poodle 1635 golden_retriever 1636 dalmatian 1638 German_shepherd 1639 Border_collie 1640 Tibetan_mastiff 1641 Chihuahua 1642 Pomeranian 1643 Labrador_retriever 1645 Chihuahua 1646 malamute 1647 kelpie 1648 Saluki 1649 golden_retriever 1650 Doberman 1652 pug 1653 curly-coated_retriever 1654 cocker_spaniel 1655 golden_retriever 1656 miniature_schnauzer 1658 Chihuahua 1659 Labrador_retriever 1660 standard_poodle 1662 Border_terrier 1663 Rottweiler 1664 Cardigan 1667 American_Staffordshire_terrier 1669 Gordon_setter 1670 West_Highland_white_terrier 1671 golden_retriever 1672 Old_English_sheepdog 1673 Pomeranian 1674 German_shepherd 1675 Irish_setter 1676 Doberman 1677 golden_retriever 1678 golden_retriever 1679 Samoyed 1680 Pomeranian 1681 Samoyed 1682 cocker_spaniel 1683 malinois 1684 Lakeland_terrier 1688 cairn 1689 schipperke 1691 Pembroke 1692 English_setter 1693 Border_terrier 1694 Eskimo_dog 1695 Pekinese 1696 Rottweiler 1697 Great_Pyrenees 1700 Labrador_retriever 1701 French_bulldog 1702 German_shepherd 1703 French_bulldog 1704 Great_Pyrenees 1705 golden_retriever 1706 Great_Dane 1707 golden_retriever 1708 Pembroke 1709 collie 1710 German_shepherd 1711 American_Staffordshire_terrier 1713 malamute 1714 American_Staffordshire_terrier 1715 Bedlington_terrier 1716 Weimaraner 1718 golden_retriever 1721 boxer 1722 golden_retriever 1723 Staffordshire_bullterrier 1724 Labrador_retriever 1725 French_bulldog 1726 Border_terrier 1727 toy_poodle 1728 Labrador_retriever 1729 kuvasz 1730 cocker_spaniel 1731 Doberman 1732 briard 1733 Old_English_sheepdog 1734 Chihuahua 1735 Eskimo_dog 1736 Pembroke 1737 bloodhound 1738 Pomeranian 1739 whippet 1740 Pembroke 1741 kelpie 1742 Pekinese 1743 Eskimo_dog 1744 Cardigan 1745 boxer 1746 Cardigan 1747 golden_retriever 1748 West_Highland_white_terrier 1749 Chihuahua 1750 kuvasz 1753 golden_retriever 1754 Rhodesian_ridgeback 1756 Border_terrier 1759 Border_collie 1761 Rottweiler 1762 Staffordshire_bullterrier 1763 Samoyed 1764 borzoi 1769 Siberian_husky 1770 American_Staffordshire_terrier 1771 Norwegian_elkhound 1773 golden_retriever 1774 chow 1775 Great_Pyrenees 1776 kelpie 1777 Border_terrier 1778 Leonberg 1780 Staffordshire_bullterrier 1781 Chesapeake_Bay_retriever 1783 golden_retriever 1785 Brittany_spaniel 1786 Afghan_hound 1788 Chihuahua 1789 chow 1790 French_bulldog 1791 Pembroke 1793 Labrador_retriever 1794 Pembroke 1795 Labrador_retriever 1796 Labrador_retriever 1797 Labrador_retriever 1799 Labrador_retriever 1800 Labrador_retriever 1802 Irish_water_spaniel 1803 Dandie_Dinmont 1804 chow 1805 Samoyed 1806 golden_retriever 1807 giant_schnauzer 1808 golden_retriever 1809 Shetland_sheepdog 1811 Staffordshire_bullterrier 1812 Airedale 1813 Cardigan 1814 Bernese_mountain_dog 1816 Bedlington_terrier 1817 malamute 1818 flat-coated_retriever 1821 schipperke 1822 Chihuahua 1823 Shetland_sheepdog 1825 Yorkshire_terrier 1826 pug 1829 Cardigan 1833 bloodhound 1834 golden_retriever 1835 Great_Dane 1837 German_shepherd 1838 miniature_pinscher 1839 English_springer 1840 black-and-tan_coonhound 1841 Pembroke 1842 Chihuahua 1843 Pembroke 1844 Blenheim_spaniel 1845 flat-coated_retriever 1846 Chihuahua 1847 Old_English_sheepdog 1848 Boston_bull 1849 golden_retriever 1850 Samoyed 1851 malamute 1852 Labrador_retriever 1853 French_bulldog 1854 golden_retriever 1855 Pembroke 1856 golden_retriever 1859 golden_retriever 1860 Labrador_retriever 1861 French_bulldog 1864 Bedlington_terrier 1865 Cardigan 1866 German_shepherd 1868 Cardigan 1869 chow 1871 basset 1872 Australian_terrier 1873 French_bulldog 1874 Lakeland_terrier 1875 Staffordshire_bullterrier 1876 Eskimo_dog 1878 golden_retriever 1879 bull_mastiff 1881 Pembroke 1882 Chesapeake_Bay_retriever 1883 golden_retriever 1884 Samoyed 1885 French_bulldog 1886 flat-coated_retriever 1887 Samoyed 1888 Eskimo_dog 1889 Border_collie 1890 Labrador_retriever 1891 whippet 1892 Labrador_retriever 1894 Pembroke 1895 Chihuahua 1896 Pembroke 1897 Pembroke 1899 Greater_Swiss_Mountain_dog 1900 golden_retriever 1901 Pembroke 1903 kelpie 1904 komondor 1905 Labrador_retriever 1906 Shetland_sheepdog 1908 Labrador_retriever 1909 Pembroke 1910 cocker_spaniel 1911 pug 1912 Labrador_retriever 1913 vizsla 1914 Newfoundland 1915 Cardigan 1916 flat-coated_retriever 1917 cocker_spaniel 1918 Labrador_retriever 1919 West_Highland_white_terrier 1920 Siberian_husky 1921 Labrador_retriever 1922 Bernese_mountain_dog 1923 golden_retriever 1924 bloodhound 1925 Pembroke 1926 Saluki 1927 basset 1928 Chesapeake_Bay_retriever 1929 French_bulldog 1930 basset 1931 Italian_greyhound 1932 vizsla 1935 English_springer 1936 German_short-haired_pointer 1937 basset 1938 miniature_pinscher 1939 Chihuahua 1940 golden_retriever 1941 Pembroke 1944 Samoyed 1945 Saluki 1946 Weimaraner 1948 golden_retriever 1949 Pembroke 1950 Labrador_retriever 1951 Eskimo_dog 1952 golden_retriever 1953 chow 1954 golden_retriever 1955 Doberman 1956 German_shepherd 1957 Pembroke 1958 pug 1959 chow 1960 Italian_greyhound 1961 malamute 1962 pug 1963 Blenheim_spaniel 1964 pug 1965 French_bulldog 1967 kuvasz 1968 Chihuahua 1969 Samoyed 1970 Mexican_hairless 1971 Pembroke 1973 basset 1974 French_bulldog 1975 Siberian_husky 1976 golden_retriever 1977 golden_retriever 1978 whippet 1979 golden_retriever 1980 French_bulldog 1981 Pembroke 1982 French_bulldog 1983 Samoyed 1984 Pembroke 1985 Irish_terrier 1986 Pomeranian 1987 Appenzeller 1988 Chesapeake_Bay_retriever 1989 basset 1991 Chihuahua 1992 Chihuahua 1994 collie 1995 miniature_pinscher 1996 malinois 1997 redbone 1998 Rottweiler 1999 English_springer 2001 Tibetan_mastiff 2003 komondor 2004 Tibetan_mastiff 2005 Yorkshire_terrier 2006 English_foxhound 2007 bull_mastiff 2008 German_shepherd 2009 Shih-Tzu 2010 Newfoundland 2013 toy_terrier 2014 toy_poodle 2016 Newfoundland 2017 Chesapeake_Bay_retriever 2018 Siberian_husky 2020 Afghan_hound 2021 toy_terrier 2022 bloodhound 2024 papillon 2025 cocker_spaniel 2026 chow 2027 Irish_terrier 2029 beagle 2030 giant_schnauzer 2031 Labrador_retriever 2032 Pembroke 2033 English_springer 2034 beagle 2035 Chihuahua 2036 cocker_spaniel 2037 miniature_pinscher 2038 Weimaraner 2040 Brittany_spaniel 2041 standard_schnauzer 2043 toy_poodle 2046 Rottweiler 2048 Labrador_retriever 2049 vizsla 2051 pug 2052 Italian_greyhound 2053 Chihuahua 2054 Samoyed 2055 Pomeranian 2056 miniature_poodle 2057 Rottweiler 2058 Lakeland_terrier 2059 Chihuahua 2060 Lakeland_terrier 2061 Chesapeake_Bay_retriever 2062 Irish_setter 2064 miniature_pinscher 2065 malamute 2066 Labrador_retriever 2068 Border_collie 2069 Leonberg 2070 miniature_pinscher 2073 French_bulldog 2074 Irish_terrier 2075 pug 2078 golden_retriever 2079 Labrador_retriever 2080 standard_poodle 2082 kuvasz 2083 Cardigan 2084 silky_terrier 2085 Pembroke 2086 miniature_poodle 2089 golden_retriever 2091 pug 2093 English_setter 2094 Chesapeake_Bay_retriever 2095 Chihuahua 2097 Siberian_husky 2100 miniature_pinscher 2101 golden_retriever 2102 Pekinese 2103 malamute 2105 boxer 2108 Cardigan 2112 cocker_spaniel 2113 golden_retriever 2114 golden_retriever 2117 miniature_pinscher 2119 Cardigan 2120 Lakeland_terrier 2121 basset 2125 Labrador_retriever 2126 Bedlington_terrier 2127 miniature_pinscher 2128 Shetland_sheepdog 2129 kuvasz 2130 toy_poodle 2131 French_bulldog 2133 Lhasa 2136 Pomeranian 2137 groenendael 2138 pug 2139 Australian_terrier 2140 Shih-Tzu 2142 pug 2145 Italian_greyhound 2146 Weimaraner 2147 Italian_greyhound 2148 Irish_terrier 2149 Tibetan_mastiff 2151 collie 2152 Ibizan_hound 2153 Old_English_sheepdog 2154 Lakeland_terrier 2155 Chesapeake_Bay_retriever 2156 Welsh_springer_spaniel 2157 Irish_setter 2159 Chihuahua 2163 English_springer 2164 Cardigan 2165 Italian_greyhound 2167 Pomeranian 2168 French_bulldog 2170 Irish_setter 2171 Cardigan 2172 Labrador_retriever 2173 Eskimo_dog 2175 Pembroke 2176 French_bulldog 2177 German_short-haired_pointer 2178 Irish_setter 2179 beagle 2180 miniature_pinscher 2181 Norfolk_terrier 2182 Blenheim_spaniel 2183 miniature_poodle 2184 toy_terrier 2186 miniature_schnauzer 2188 Siberian_husky 2189 Tibetan_terrier 2190 golden_retriever 2192 borzoi 2194 Chihuahua 2198 keeshond 2199 redbone 2200 Rottweiler 2203 Saint_Bernard 2205 borzoi 2206 beagle 2208 American_Staffordshire_terrier 2210 Siberian_husky 2212 Staffordshire_bullterrier 2213 miniature_poodle 2214 Pomeranian 2215 Cardigan 2216 briard 2217 West_Highland_white_terrier 2219 English_setter 2220 Chesapeake_Bay_retriever 2221 French_bulldog 2223 miniature_schnauzer 2227 toy_terrier 2228 golden_retriever 2229 giant_schnauzer 2230 Chesapeake_Bay_retriever 2231 basenji 2232 otterhound 2233 Brittany_spaniel 2240 West_Highland_white_terrier 2241 Brittany_spaniel 2243 cairn 2244 Pekinese 2247 Norwegian_elkhound 2248 golden_retriever 2249 Brabancon_griffon 2251 French_bulldog 2253 Pembroke 2254 basset 2255 toy_poodle 2256 beagle 2257 Ibizan_hound 2258 Pekinese 2259 Sealyham_terrier 2260 Walker_hound 2261 Staffordshire_bullterrier 2262 Chihuahua 2263 German_short-haired_pointer 2265 Norwegian_elkhound 2268 Lhasa 2270 beagle 2271 beagle 2272 kelpie 2273 Chihuahua 2274 golden_retriever 2275 Great_Pyrenees 2277 cairn 2278 black-and-tan_coonhound 2279 Chesapeake_Bay_retriever 2283 kelpie 2284 whippet 2286 toy_poodle 2287 toy_terrier 2290 Great_Pyrenees 2291 kelpie 2296 wire-haired_fox_terrier 2297 Pekinese 2298 black-and-tan_coonhound 2300 bull_mastiff 2302 collie 2305 black-and-tan_coonhound 2306 Samoyed 2307 Irish_wolfhound 2308 miniature_poodle 2311 French_bulldog 2314 Chihuahua 2318 golden_retriever 2321 toy_poodle 2322 French_bulldog 2323 golden_retriever 2325 French_bulldog 2326 Sussex_spaniel 2328 basset 2330 French_bulldog 2332 Airedale 2333 French_bulldog 2336 miniature_pinscher 2337 Norwegian_elkhound 2338 toy_poodle 2340 collie 2341 borzoi 2342 Rottweiler 2343 chow 2344 Chihuahua 2346 Great_Pyrenees 2347 Old_English_sheepdog 2348 miniature_poodle 2351 Labrador_retriever 2352 Cardigan 2354 Cardigan 2355 beagle 2359 pug 2360 miniature_poodle 2362 Brabancon_griffon 2363 basset 2365 West_Highland_white_terrier 2366 boxer 2367 Pomeranian 2369 groenendael 2371 Maltese_dog 2372 Labrador_retriever 2373 bloodhound 2374 Pomeranian 2375 Chihuahua 2376 Italian_greyhound 2379 Labrador_retriever 2380 miniature_pinscher 2381 Brittany_spaniel 2384 basset 2385 golden_retriever 2386 Leonberg 2388 Rhodesian_ridgeback 2389 beagle 2392 Sealyham_terrier 2393 American_Staffordshire_terrier 2396 Lhasa 2397 kelpie 2398 cocker_spaniel 2400 toy_poodle 2402 Chihuahua 2403 soft-coated_wheaten_terrier 2404 schipperke 2405 Brabancon_griffon 2407 Cardigan 2408 borzoi 2409 Pekinese 2410 miniature_poodle 2411 Norwegian_elkhound 2412 miniature_poodle 2415 Pembroke 2417 Kerry_blue_terrier 2418 Shetland_sheepdog 2419 Siberian_husky 2420 boxer 2422 Norwegian_elkhound 2423 malinois 2424 Pembroke 2429 Boston_bull 2430 Labrador_retriever 2431 Shih-Tzu 2432 malinois 2433 Pomeranian 2435 chow 2436 basset 2437 groenendael 2439 Eskimo_dog 2441 schipperke 2443 Shetland_sheepdog 2444 redbone 2448 French_bulldog 2450 toy_poodle 2451 Chesapeake_Bay_retriever 2452 Afghan_hound 2453 Cardigan 2454 cocker_spaniel 2455 Doberman 2456 Pomeranian 2458 golden_retriever 2459 chow 2460 English_setter 2461 Brittany_spaniel 2464 Great_Dane 2465 Cardigan 2466 Labrador_retriever 2467 Tibetan_mastiff 2469 standard_poodle 2470 Cardigan 2471 Saluki 2472 golden_retriever 2474 West_Highland_white_terrier 2475 golden_retriever 2478 miniature_pinscher 2480 groenendael 2481 golden_retriever 2482 Cardigan 2483 schipperke 2484 Welsh_springer_spaniel 2485 Staffordshire_bullterrier 2486 miniature_schnauzer 2487 kuvasz 2488 West_Highland_white_terrier 2489 basset 2490 beagle 2491 chow 2492 Boston_bull 2493 golden_retriever 2494 Welsh_springer_spaniel 2496 Old_English_sheepdog 2497 whippet 2498 malinois 2499 boxer 2501 Norfolk_terrier 2502 standard_poodle 2503 Italian_greyhound 2506 Chihuahua 2507 toy_poodle 2508 cocker_spaniel 2509 toy_poodle 2510 borzoi 2511 Norwegian_elkhound 2513 Yorkshire_terrier 2514 Boston_bull 2515 French_bulldog 2516 Great_Dane 2518 Doberman 2519 Pomeranian 2521 Pomeranian 2523 kuvasz 2526 Norwegian_elkhound 2528 golden_retriever 2530 Saint_Bernard 2531 beagle 2532 Siberian_husky 2533 Shih-Tzu 2535 collie 2536 Pekinese 2537 Japanese_spaniel 2538 kelpie 2539 boxer 2540 Airedale 2541 Norwegian_elkhound 2542 Staffordshire_bullterrier 2543 Shih-Tzu 2544 Welsh_springer_spaniel 2546 Italian_greyhound 2550 Lhasa 2553 kuvasz 2554 dalmatian 2555 Doberman 2556 Yorkshire_terrier 2557 Lhasa 2558 golden_retriever 2559 cocker_spaniel 2561 kelpie 2562 Cardigan 2563 Bedlington_terrier 2564 Labrador_retriever 2565 toy_poodle 2566 Rottweiler 2567 flat-coated_retriever 2570 Border_collie 2571 Australian_terrier 2573 toy_poodle 2574 silky_terrier 2575 beagle 2576 Chesapeake_Bay_retriever 2577 Siberian_husky 2579 schipperke 2580 beagle 2581 Irish_wolfhound 2583 bull_mastiff 2584 miniature_poodle 2585 toy_poodle 2590 Boston_bull 2591 West_Highland_white_terrier 2592 Chihuahua 2593 bull_mastiff 2594 dalmatian 2595 Border_terrier 2597 Greater_Swiss_Mountain_dog 2599 Great_Pyrenees 2600 Shih-Tzu 2602 chow 2603 French_bulldog 2604 West_Highland_white_terrier 2605 toy_poodle 2606 miniature_pinscher 2608 Welsh_springer_spaniel 2612 West_Highland_white_terrier 2613 Samoyed 2616 Chihuahua 2618 Labrador_retriever 2619 Shetland_sheepdog 2620 collie 2621 golden_retriever 2622 Siberian_husky 2623 West_Highland_white_terrier 2625 whippet 2626 keeshond 2627 cocker_spaniel 2629 miniature_poodle 2630 Pekinese 2631 Shih-Tzu 2633 Eskimo_dog 2634 Labrador_retriever 2635 German_shepherd 2636 Labrador_retriever 2637 miniature_poodle 2638 chow 2640 miniature_poodle 2642 golden_retriever 2644 groenendael 2648 Eskimo_dog 2649 Lakeland_terrier 2650 flat-coated_retriever 2653 Italian_greyhound 2654 Cardigan 2655 Cardigan 2657 English_springer 2659 Chihuahua 2660 bull_mastiff 2661 Eskimo_dog 2662 kuvasz 2663 soft-coated_wheaten_terrier 2664 chow 2665 Cardigan 2666 Boston_bull 2667 soft-coated_wheaten_terrier 2668 whippet 2669 chow 2670 Irish_terrier 2671 Cardigan 2672 Labrador_retriever 2673 Siberian_husky 2674 toy_poodle 2675 Mexican_hairless 2677 Shetland_sheepdog 2678 German_short-haired_pointer 2680 German_shepherd 2681 American_Staffordshire_terrier 2682 toy_terrier 2684 cocker_spaniel 2685 Samoyed 2687 Chesapeake_Bay_retriever 2688 Pomeranian 2691 English_setter 2692 Norfolk_terrier 2694 Cardigan 2695 chow 2696 golden_retriever 2697 collie 2699 Appenzeller 2701 Norwegian_elkhound 2702 Shetland_sheepdog 2703 Pomeranian 2704 French_bulldog 2705 Labrador_retriever 2708 Airedale 2711 briard 2712 toy_terrier 2713 Eskimo_dog 2715 redbone 2716 Irish_wolfhound 2717 keeshond 2718 bull_mastiff 2719 Leonberg 2720 silky_terrier 2721 Ibizan_hound 2722 miniature_pinscher 2723 cocker_spaniel 2724 Newfoundland 2727 Chesapeake_Bay_retriever 2729 whippet 2731 Chihuahua 2732 Great_Dane 2733 Maltese_dog 2734 boxer 2736 English_setter 2737 miniature_pinscher 2738 French_bulldog 2739 toy_terrier 2740 boxer 2741 soft-coated_wheaten_terrier 2742 Pekinese 2743 Norwegian_elkhound 2744 Chihuahua 2747 cocker_spaniel 2748 Cardigan 2749 Blenheim_spaniel 2750 Staffordshire_bullterrier 2751 German_shepherd 2754 Chihuahua 2757 papillon 2758 golden_retriever 2759 Chesapeake_Bay_retriever 2760 American_Staffordshire_terrier 2761 affenpinscher 2763 Cardigan 2764 Siberian_husky 2765 cocker_spaniel 2768 whippet 2769 Shetland_sheepdog 2770 Tibetan_terrier 2771 Shetland_sheepdog 2772 Labrador_retriever 2773 English_springer 2774 Great_Pyrenees 2775 Siberian_husky 2778 French_bulldog 2779 Labrador_retriever 2780 papillon 2784 golden_retriever 2785 Labrador_retriever 2788 Labrador_retriever 2791 German_shepherd 2792 Irish_terrier 2793 Border_collie 2794 collie 2795 black-and-tan_coonhound 2797 boxer 2799 cocker_spaniel 2802 malamute 2804 Eskimo_dog 2805 French_bulldog 2806 Labrador_retriever 2807 Siberian_husky 2809 bluetick 2810 cocker_spaniel 2811 Doberman 2812 English_springer 2814 Welsh_springer_spaniel 2815 Lhasa 2816 Chesapeake_Bay_retriever 2817 Labrador_retriever 2818 bull_mastiff 2821 Siberian_husky 2822 French_bulldog 2823 bluetick 2825 Norwegian_elkhound 2826 Cardigan 2827 Pekinese 2828 toy_poodle 2829 bull_mastiff 2830 Yorkshire_terrier 2831 Pomeranian 2834 pug 2836 Tibetan_terrier 2837 Chihuahua 2838 Lhasa 2839 bull_mastiff 2840 Cardigan 2841 otterhound 2842 Lakeland_terrier 2844 chow 2845 Walker_hound 2846 Scotch_terrier 2847 Chesapeake_Bay_retriever 2848 toy_poodle 2850 golden_retriever 2851 beagle 2852 Pembroke 2854 malinois 2855 boxer 2856 miniature_poodle 2857 golden_retriever 2859 whippet 2860 collie 2861 Shih-Tzu 2863 Greater_Swiss_Mountain_dog 2864 Cardigan 2865 Boston_bull 2866 malinois 2867 American_Staffordshire_terrier 2868 basset 2869 Saint_Bernard 2870 Pekinese 2871 Boston_bull 2872 kuvasz 2873 Welsh_springer_spaniel 2875 bluetick 2876 redbone 2877 Irish_terrier 2879 Pekinese 2880 Chesapeake_Bay_retriever 2883 Chihuahua 2884 malamute 2885 French_bulldog 2886 kuvasz 2887 Cardigan 2889 Old_English_sheepdog 2890 German_shepherd 2891 toy_poodle 2892 Irish_setter 2893 schipperke 2894 Maltese_dog 2897 Italian_greyhound 2898 Pembroke 2899 Pomeranian 2900 Norwegian_elkhound 2901 Staffordshire_bullterrier 2902 Samoyed 2904 redbone 2905 Great_Pyrenees 2906 schipperke 2907 Pembroke 2908 Cardigan 2909 silky_terrier 2910 Pembroke 2911 Staffordshire_bullterrier 2912 miniature_poodle 2914 chow 2915 French_bulldog 2916 Scotch_terrier 2917 Shih-Tzu 2919 Sussex_spaniel 2920 Chesapeake_Bay_retriever 2923 Shetland_sheepdog 2925 collie 2926 standard_poodle 2929 basenji 2931 Greater_Swiss_Mountain_dog 2932 Chesapeake_Bay_retriever 2933 kuvasz 2936 Cardigan 2937 Pomeranian 2939 Chihuahua 2941 Labrador_retriever 2943 soft-coated_wheaten_terrier 2944 Irish_terrier 2945 chow 2946 Chesapeake_Bay_retriever 2947 toy_terrier 2949 kuvasz 2950 Labrador_retriever 2951 Italian_greyhound 2952 Labrador_retriever 2953 Border_collie 2954 Labrador_retriever 2955 American_Staffordshire_terrier 2956 kuvasz 2957 Pekinese 2958 bull_mastiff 2959 Chihuahua 2960 Rottweiler 2961 Labrador_retriever 2962 Pembroke 2964 Chihuahua 2965 miniature_poodle 2967 Italian_greyhound 2968 golden_retriever 2970 Great_Pyrenees 2971 Shih-Tzu 2972 Shetland_sheepdog 2973 bloodhound 2974 Italian_greyhound 2975 Airedale 2976 kuvasz 2977 cocker_spaniel 2979 Italian_greyhound 2980 toy_terrier 2981 miniature_poodle 2983 Chesapeake_Bay_retriever 2984 American_Staffordshire_terrier 2985 Norfolk_terrier 2986 Chihuahua 2987 basset 2988 basenji 2989 French_bulldog 2990 toy_terrier 2991 Lhasa 2992 German_short-haired_pointer 2993 Samoyed 2994 Labrador_retriever 2996 kelpie 2997 Rottweiler 2998 Eskimo_dog 2999 wire-haired_fox_terrier 3000 Italian_greyhound 3001 Pomeranian 3002 collie 3003 Dandie_Dinmont 3004 Newfoundland 3005 kuvasz 3006 Tibetan_mastiff 3007 Pomeranian 3009 Cardigan 3010 miniature_poodle 3011 papillon 3013 German_shepherd 3014 wire-haired_fox_terrier 3015 Lhasa 3016 Cardigan 3017 Dandie_Dinmont 3018 Cardigan 3019 Pembroke 3020 Eskimo_dog 3021 Boston_bull 3023 Cardigan 3026 Ibizan_hound 3027 miniature_poodle 3030 Tibetan_terrier 3032 whippet 3033 Great_Pyrenees 3034 golden_retriever 3035 kuvasz 3037 malamute 3038 basenji 3039 Samoyed 3040 English_springer 3041 cocker_spaniel 3042 Eskimo_dog 3043 golden_retriever 3044 bloodhound 3045 Bedlington_terrier 3046 Chesapeake_Bay_retriever 3047 Labrador_retriever 3049 Samoyed 3050 beagle 3051 Chihuahua 3052 beagle 3053 Italian_greyhound 3054 soft-coated_wheaten_terrier 3056 Labrador_retriever 3057 pug 3058 miniature_poodle 3059 French_bulldog 3060 chow 3061 silky_terrier 3062 malamute 3064 Leonberg 3065 Eskimo_dog 3066 Labrador_retriever 3067 Italian_greyhound 3068 Labrador_retriever 3070 English_springer 3071 Siberian_husky 3074 Boston_bull 3075 West_Highland_white_terrier 3076 German_short-haired_pointer 3077 Pekinese 3078 Cardigan 3079 Saint_Bernard 3080 miniature_poodle 3081 borzoi 3082 soft-coated_wheaten_terrier 3083 Siberian_husky 3085 cocker_spaniel 3086 Eskimo_dog 3087 redbone 3089 Cardigan 3090 black-and-tan_coonhound 3091 groenendael 3094 Chihuahua 3095 golden_retriever 3096 Greater_Swiss_Mountain_dog 3098 Labrador_retriever 3099 chow 3100 Pomeranian 3101 pug 3102 bull_mastiff 3103 collie 3104 cocker_spaniel 3105 bluetick 3106 Great_Pyrenees 3107 bull_mastiff 3108 Samoyed 3109 miniature_poodle 3110 cocker_spaniel 3111 Border_terrier 3112 Irish_terrier 3113 toy_poodle 3114 Great_Dane 3116 miniature_poodle 3117 Chihuahua 3118 kuvasz 3119 collie 3120 golden_retriever 3121 Pomeranian 3122 groenendael 3123 Great_Pyrenees 3124 Saint_Bernard 3126 collie 3127 Cardigan 3128 toy_poodle 3130 Doberman 3135 Norwegian_elkhound 3136 Siberian_husky 3137 Labrador_retriever 3140 Cardigan 3141 Border_collie 3142 basset 3143 American_Staffordshire_terrier 3144 Samoyed 3145 Staffordshire_bullterrier 3146 Labrador_retriever 3149 Shih-Tzu 3150 Walker_hound 3151 Eskimo_dog 3152 chow 3154 beagle 3155 French_bulldog 3159 toy_poodle 3160 Labrador_retriever 3161 West_Highland_white_terrier 3162 toy_poodle 3163 groenendael 3166 Pomeranian 3167 Cardigan 3168 Norwegian_elkhound 3169 Rhodesian_ridgeback 3171 Norwegian_elkhound 3172 standard_poodle 3173 Blenheim_spaniel 3175 golden_retriever 3177 Siberian_husky 3178 English_foxhound 3179 golden_retriever 3180 cocker_spaniel 3182 beagle 3184 Labrador_retriever 3185 kuvasz 3187 kuvasz 3188 Norwegian_elkhound 3191 Samoyed 3192 Labrador_retriever 3193 pug 3194 redbone 3195 flat-coated_retriever 3196 French_bulldog 3197 French_bulldog 3199 Border_collie 3200 Brabancon_griffon 3203 Chesapeake_Bay_retriever 3204 soft-coated_wheaten_terrier 3205 Siberian_husky 3207 standard_poodle 3209 American_Staffordshire_terrier 3210 Great_Dane 3211 Rhodesian_ridgeback 3213 Pomeranian 3214 Samoyed 3215 golden_retriever 3216 Shih-Tzu 3217 collie 3219 golden_retriever 3220 basset 3221 chow 3222 Shih-Tzu 3223 collie 3224 Pomeranian 3225 malinois 3226 Lakeland_terrier 3227 Labrador_retriever 3230 beagle 3232 golden_retriever 3236 malinois 3238 Weimaraner 3239 Chihuahua 3240 papillon 3241 Samoyed 3242 Eskimo_dog 3243 Irish_terrier 3245 collie 3246 whippet 3247 toy_poodle 3250 Cardigan 3252 wire-haired_fox_terrier 3253 bluetick 3254 West_Highland_white_terrier 3255 Brabancon_griffon 3256 Lakeland_terrier 3257 chow 3258 curly-coated_retriever 3259 Shetland_sheepdog 3260 Chihuahua 3262 West_Highland_white_terrier 3263 Boston_bull 3265 Maltese_dog 3266 borzoi 3267 malinois 3270 Lhasa 3271 miniature_poodle 3272 Boston_bull 3273 collie 3274 Labrador_retriever 3276 Cardigan 3277 miniature_poodle 3278 Chesapeake_Bay_retriever 3279 Chesapeake_Bay_retriever 3280 German_short-haired_pointer 3281 Afghan_hound 3282 golden_retriever 3284 miniature_poodle 3285 Pomeranian 3287 German_shepherd 3288 standard_poodle 3289 Labrador_retriever 3290 English_setter 3291 Eskimo_dog 3292 malinois 3293 Cardigan 3296 Italian_greyhound 3298 toy_terrier 3299 Boston_bull 3300 Norfolk_terrier 3301 basset 3304 Labrador_retriever 3305 golden_retriever 3307 Maltese_dog 3308 Irish_terrier 3309 French_bulldog 3310 cocker_spaniel 3312 kelpie 3313 cocker_spaniel 3314 Labrador_retriever 3315 whippet 3316 Chesapeake_Bay_retriever 3317 golden_retriever 3319 beagle 3320 Labrador_retriever 3321 Old_English_sheepdog 3322 Cardigan 3323 Cardigan 3325 Chihuahua 3326 Cardigan 3327 Labrador_retriever 3328 vizsla 3329 Old_English_sheepdog 3331 kelpie 3332 golden_retriever 3333 Bedlington_terrier 3334 Chesapeake_Bay_retriever 3335 Labrador_retriever 3336 vizsla 3340 Lhasa 3341 malamute 3343 Labrador_retriever 3344 cocker_spaniel 3345 Sussex_spaniel 3346 French_bulldog 3347 Samoyed 3348 malinois 3349 Saluki 3352 Chesapeake_Bay_retriever 3355 Tibetan_mastiff 3356 standard_poodle 3357 German_shepherd 3359 toy_poodle 3361 malinois 3362 Appenzeller 3363 whippet 3364 Labrador_retriever 3365 Cardigan 3366 Walker_hound 3367 Labrador_retriever 3368 basset 3369 beagle 3370 miniature_poodle 3371 Pomeranian 3372 vizsla 3373 basset 3374 miniature_poodle 3376 golden_retriever 3380 Chesapeake_Bay_retriever 3381 golden_retriever 3382 Italian_greyhound 3383 Brabancon_griffon 3384 golden_retriever 3385 Pekinese 3387 Chihuahua 3388 American_Staffordshire_terrier 3389 Mexican_hairless 3392 golden_retriever 3393 Greater_Swiss_Mountain_dog 3395 pug 3396 golden_retriever 3397 Border_collie 3398 golden_retriever 3399 collie 3400 Cardigan 3401 toy_terrier 3402 beagle 3403 Irish_setter 3404 Chihuahua 3405 Border_collie 3406 Walker_hound 3407 Norwegian_elkhound 3408 Shih-Tzu 3409 miniature_pinscher 3410 Labrador_retriever 3411 Chesapeake_Bay_retriever 3412 Maltese_dog 3413 Yorkshire_terrier 3414 Samoyed 3416 Siberian_husky 3417 basenji 3418 miniature_poodle 3419 golden_retriever 3420 Chihuahua 3424 pug 3426 black-and-tan_coonhound 3427 Pomeranian 3428 Chesapeake_Bay_retriever 3429 miniature_poodle 3430 Mexican_hairless 3431 Norwich_terrier 3432 golden_retriever 3433 basset 3434 cocker_spaniel 3435 malinois 3436 pug 3437 borzoi 3438 Cardigan 3439 Irish_terrier 3440 malinois 3441 boxer 3442 Labrador_retriever 3443 toy_terrier 3444 soft-coated_wheaten_terrier 3446 cocker_spaniel 3448 German_shepherd 3449 Labrador_retriever 3450 Cardigan 3451 Eskimo_dog 3452 Sussex_spaniel 3454 collie 3455 Italian_greyhound 3456 Chesapeake_Bay_retriever 3457 golden_retriever 3459 soft-coated_wheaten_terrier 3460 Tibetan_mastiff 3461 golden_retriever 3462 otterhound 3463 golden_retriever 3464 Airedale 3465 Shetland_sheepdog 3466 cairn 3467 miniature_pinscher 3468 golden_retriever 3469 golden_retriever 3471 toy_poodle 3472 Eskimo_dog 3474 Eskimo_dog 3476 black-and-tan_coonhound 3478 golden_retriever 3479 toy_poodle 3480 schipperke 3481 Labrador_retriever 3482 Cardigan 3483 keeshond 3485 Saluki 3486 golden_retriever 3487 toy_terrier 3488 malinois 3489 French_bulldog 3491 Pomeranian 3492 Pomeranian 3493 Labrador_retriever 3494 golden_retriever 3496 Pekinese 3497 Siberian_husky 3498 kelpie 3499 beagle 3502 Great_Dane 3503 Cardigan 3504 malinois 3505 EntleBucher 3506 golden_retriever 3507 flat-coated_retriever 3508 toy_terrier 3509 Cardigan 3510 Labrador_retriever 3512 Irish_setter 3513 silky_terrier 3516 golden_retriever 3518 bluetick 3519 Labrador_retriever 3520 Irish_terrier 3521 golden_retriever 3522 French_bulldog 3523 Lakeland_terrier 3524 Labrador_retriever 3525 Walker_hound 3526 Eskimo_dog 3527 borzoi 3528 Labrador_retriever 3529 Chihuahua 3530 Bedlington_terrier 3531 golden_retriever 3533 malamute 3536 Labrador_retriever 3537 Chesapeake_Bay_retriever 3538 Labrador_retriever 3539 Tibetan_mastiff 3540 Pembroke 3541 Labrador_retriever 3542 Pomeranian 3544 Staffordshire_bullterrier 3545 Boston_bull 3546 Border_collie 3547 Cardigan 3548 Chihuahua 3549 Shih-Tzu 3550 cairn 3551 Eskimo_dog 3552 Norwich_terrier 3553 Siberian_husky 3554 redbone 3555 collie 3557 kuvasz 3558 Pembroke 3560 Cardigan 3561 miniature_poodle 3562 English_setter 3563 Dandie_Dinmont 3565 Cardigan 3566 American_Staffordshire_terrier 3567 Siberian_husky 3568 beagle 3570 Labrador_retriever 3571 golden_retriever 3572 chow 3574 golden_retriever 3575 redbone 3577 German_shepherd 3578 Rhodesian_ridgeback 3580 German_shepherd 3581 American_Staffordshire_terrier 3582 keeshond 3583 Pomeranian 3584 Brittany_spaniel 3586 Irish_setter 3587 Pomeranian 3588 cocker_spaniel 3589 Staffordshire_bullterrier 3590 Labrador_retriever 3591 cocker_spaniel 3592 toy_poodle 3593 miniature_pinscher 3594 bloodhound 3595 Samoyed 3596 Cardigan 3597 toy_poodle 3598 American_Staffordshire_terrier 3599 Eskimo_dog 3600 Siberian_husky 3601 Labrador_retriever 3602 Tibetan_mastiff 3603 Cardigan 3604 Pembroke 3605 Labrador_retriever 3606 French_bulldog 3607 cocker_spaniel 3610 golden_retriever 3611 boxer 3612 Labrador_retriever 3613 Pembroke 3614 kelpie 3615 Boston_bull 3616 Pembroke 3617 whippet 3618 Ibizan_hound 3619 Pembroke 3620 golden_retriever 3621 Labrador_retriever 3622 golden_retriever 3623 Pomeranian 3624 Siberian_husky 3625 Boston_bull 3626 Eskimo_dog 3627 Labrador_retriever 3628 toy_poodle 3629 kuvasz 3630 boxer 3632 Norwegian_elkhound 3633 Cardigan 3634 Tibetan_terrier 3635 miniature_pinscher 3636 Samoyed 3637 kuvasz 3639 Pomeranian 3640 Pembroke 3641 French_bulldog 3642 Afghan_hound 3643 Irish_setter 3644 black-and-tan_coonhound 3645 Samoyed 3646 French_bulldog 3647 flat-coated_retriever 3648 golden_retriever 3649 Labrador_retriever 3650 toy_poodle 3651 Welsh_springer_spaniel 3652 Border_terrier 3653 beagle 3654 toy_poodle 3656 German_shepherd 3657 black-and-tan_coonhound 3658 basenji 3661 Staffordshire_bullterrier 3663 black-and-tan_coonhound 3664 kuvasz 3665 Pekinese 3666 Airedale 3667 papillon 3668 malinois 3669 vizsla 3670 black-and-tan_coonhound 3671 Labrador_retriever 3672 cocker_spaniel 3673 Pomeranian 3674 Samoyed 3675 malamute 3676 Norfolk_terrier 3677 Chihuahua 3678 Labrador_retriever 3680 Chihuahua 3681 German_shepherd 3683 curly-coated_retriever 3685 Cardigan 3686 golden_retriever 3687 malinois 3688 Siberian_husky 3689 Pomeranian 3690 Tibetan_mastiff 3691 golden_retriever 3693 golden_retriever 3694 golden_retriever 3695 pug 3696 Tibetan_mastiff 3698 golden_retriever 3699 Labrador_retriever 3700 American_Staffordshire_terrier 3701 toy_poodle 3702 golden_retriever 3703 Border_collie 3704 Tibetan_mastiff 3705 Staffordshire_bullterrier 3707 Eskimo_dog 3708 Staffordshire_bullterrier 3709 Labrador_retriever 3710 Chesapeake_Bay_retriever 3711 toy_poodle 3712 Chesapeake_Bay_retriever 3713 Mexican_hairless 3714 Chesapeake_Bay_retriever 3715 dalmatian 3716 cocker_spaniel 3717 American_Staffordshire_terrier 3718 golden_retriever 3719 Pekinese 3720 Staffordshire_bullterrier 3721 Pomeranian 3723 golden_retriever 3724 Brittany_spaniel 3725 kelpie 3726 soft-coated_wheaten_terrier 3727 Tibetan_terrier 3728 Pembroke 3729 Siberian_husky 3730 Cardigan 3731 Great_Dane 3733 Ibizan_hound 3735 German_short-haired_pointer 3736 Brabancon_griffon 3737 Siberian_husky 3738 Staffordshire_bullterrier 3739 French_bulldog 3740 kelpie 3741 cocker_spaniel 3742 Maltese_dog 3743 kelpie 3744 Great_Pyrenees 3747 Pekinese 3748 whippet 3749 golden_retriever 3750 Norwegian_elkhound 3751 soft-coated_wheaten_terrier 3752 American_Staffordshire_terrier 3753 collie 3754 Chesapeake_Bay_retriever 3755 Border_terrier 3763 Eskimo_dog 3764 Staffordshire_bullterrier 3765 keeshond 3767 Labrador_retriever 3769 kuvasz 3771 Brabancon_griffon 3772 Newfoundland 3773 Norwich_terrier 3774 American_Staffordshire_terrier 3775 Labrador_retriever 3777 cocker_spaniel 3779 Blenheim_spaniel 3780 Saluki 3781 Labrador_retriever 3783 Newfoundland 3785 Cardigan 3787 golden_retriever 3788 Cardigan 3789 golden_retriever 3790 golden_retriever 3791 Chesapeake_Bay_retriever 3793 golden_retriever 3794 golden_retriever 3796 Labrador_retriever 3797 Maltese_dog 3798 groenendael 3799 chow 3800 Labrador_retriever 3801 flat-coated_retriever 3802 Leonberg 3803 papillon 3804 American_Staffordshire_terrier 3805 American_Staffordshire_terrier 3806 Irish_terrier 3807 Boston_bull 3808 Greater_Swiss_Mountain_dog 3810 Ibizan_hound 3811 Siberian_husky 3812 Newfoundland 3816 toy_terrier 3817 collie 3818 kelpie 3819 Maltese_dog 3820 bull_mastiff 3823 Chihuahua 3824 Bernese_mountain_dog 3827 Brabancon_griffon 3828 otterhound 3829 Rhodesian_ridgeback 3831 malinois 3832 Chihuahua 3833 collie 3834 Doberman 3835 Cardigan 3836 toy_poodle 3837 Cardigan 3838 Pekinese 3839 Labrador_retriever 3840 Italian_greyhound 3841 Tibetan_terrier 3843 Labrador_retriever 3844 Pomeranian 3845 Siberian_husky 3846 beagle 3847 English_springer 3848 Labrador_retriever 3849 Cardigan 3850 Labrador_retriever 3852 malamute 3853 Irish_setter 3854 golden_retriever 3855 Staffordshire_bullterrier 3858 toy_poodle 3859 Pembroke 3860 Pembroke 3862 Pembroke 3863 Pomeranian 3865 beagle 3866 Irish_terrier 3867 pug 3868 Airedale 3869 French_bulldog 3870 malamute 3872 Labrador_retriever 3873 French_bulldog 3875 Cardigan 3876 Labrador_retriever 3877 kuvasz 3878 Pomeranian 3879 Boston_bull 3880 groenendael 3881 Pekinese 3882 Siberian_husky 3883 Cardigan 3884 kuvasz 3885 Italian_greyhound 3886 Great_Pyrenees 3887 French_bulldog 3888 Chihuahua 3889 toy_terrier 3890 Cardigan 3891 Cardigan 3893 Appenzeller 3894 Great_Pyrenees 3895 Cardigan 3898 briard 3899 golden_retriever 3900 collie 3901 pug 3902 flat-coated_retriever 3903 Cardigan 3904 Sussex_spaniel 3905 French_bulldog 3906 Chesapeake_Bay_retriever 3907 bloodhound 3908 Tibetan_mastiff 3909 Pembroke 3910 black-and-tan_coonhound 3911 miniature_poodle 3912 Staffordshire_bullterrier 3913 Siberian_husky 3914 Pembroke 3915 Chesapeake_Bay_retriever 3916 Saint_Bernard 3917 Irish_terrier 3918 redbone 3919 Cardigan 3920 Italian_greyhound 3921 Welsh_springer_spaniel 3922 Labrador_retriever 3923 Boston_bull 3924 collie 3925 whippet 3926 miniature_pinscher 3928 Labrador_retriever 3929 Boston_bull 3930 vizsla 3931 beagle 3932 Rhodesian_ridgeback 3934 Labrador_retriever 3935 Norwich_terrier 3939 Afghan_hound 3940 Chesapeake_Bay_retriever 3942 Labrador_retriever 3943 Chihuahua 3944 Chesapeake_Bay_retriever 3945 Siberian_husky 3946 Labrador_retriever 3947 Tibetan_mastiff 3948 Labrador_retriever 3949 miniature_pinscher 3950 malinois 3951 Cardigan 3952 French_bulldog 3953 Norwich_terrier 3954 American_Staffordshire_terrier 3955 Siberian_husky 3956 Labrador_retriever 3957 Shih-Tzu 3959 Chihuahua 3961 Great_Pyrenees 3962 toy_terrier 3963 Eskimo_dog 3965 Rhodesian_ridgeback 3967 redbone 3968 pug 3969 Eskimo_dog 3970 Labrador_retriever 3971 Tibetan_mastiff 3972 borzoi 3973 Labrador_retriever 3974 boxer 3975 Cardigan 3976 Labrador_retriever 3977 Pomeranian 3978 Cardigan 3979 Irish_setter 3980 Eskimo_dog 3981 Border_collie 3982 Irish_terrier 3983 English_springer 3984 Labrador_retriever 3985 malamute 3986 Pekinese 3988 Shetland_sheepdog 3989 Rhodesian_ridgeback 3990 bloodhound 3991 miniature_pinscher 3992 Doberman 3993 Greater_Swiss_Mountain_dog 3996 golden_retriever 3997 soft-coated_wheaten_terrier 3998 Labrador_retriever 3999 Pekinese 4000 Ibizan_hound 4001 French_bulldog 4002 malinois 4003 Dandie_Dinmont 4004 borzoi 4007 basenji 4008 miniature_poodle 4010 groenendael 4011 Labrador_retriever 4012 Eskimo_dog 4014 briard 4015 papillon 4016 flat-coated_retriever 4018 Chihuahua 4019 Shih-Tzu 4020 Pomeranian 4023 Saluki 4024 Labrador_retriever 4025 Great_Pyrenees 4026 West_Highland_white_terrier 4027 collie 4028 bloodhound 4029 French_bulldog 4030 toy_poodle 4031 Chihuahua 4032 vizsla 4034 Ibizan_hound 4035 giant_schnauzer 4036 West_Highland_white_terrier 4043 kelpie 4045 Brabancon_griffon 4046 Pomeranian 4047 toy_poodle 4048 toy_poodle 4049 miniature_poodle 4050 standard_poodle 4051 beagle 4052 Irish_water_spaniel 4053 bluetick 4054 toy_poodle 4055 Weimaraner 4056 Chesapeake_Bay_retriever 4058 black-and-tan_coonhound 4059 Eskimo_dog 4060 kuvasz 4062 collie 4063 golden_retriever 4064 black-and-tan_coonhound 4067 Staffordshire_bullterrier 4068 Yorkshire_terrier 4069 Lakeland_terrier 4072 beagle 4073 golden_retriever 4074 cocker_spaniel 4075 Chesapeake_Bay_retriever 4076 Labrador_retriever 4077 cocker_spaniel 4078 Australian_terrier 4079 Chihuahua 4083 Labrador_retriever 4087 Great_Dane 4088 curly-coated_retriever 4089 Brabancon_griffon 4090 Chihuahua 4091 Eskimo_dog 4094 schipperke 4096 Chihuahua 4097 Eskimo_dog 4100 Newfoundland 4102 collie 4106 Welsh_springer_spaniel 4107 Chesapeake_Bay_retriever 4108 Labrador_retriever 4110 Pekinese 4111 toy_terrier 4112 Pembroke 4113 basenji 4114 toy_poodle 4115 Cardigan 4117 Eskimo_dog 4119 pug 4120 Afghan_hound 4121 American_Staffordshire_terrier 4122 whippet 4123 English_setter 4124 Chihuahua 4125 Staffordshire_bullterrier 4127 Pekinese 4132 Boston_bull 4133 silky_terrier 4134 Japanese_spaniel 4139 basenji 4141 miniature_pinscher 4142 Rhodesian_ridgeback 4143 kuvasz 4144 miniature_schnauzer 4145 Cardigan 4146 Blenheim_spaniel 4147 toy_poodle 4148 soft-coated_wheaten_terrier 4150 Saint_Bernard 4151 redbone 4153 Norfolk_terrier 4155 Chihuahua 4157 French_bulldog 4158 basenji 4161 chow 4162 Chihuahua 4164 Saluki 4166 kuvasz 4167 malamute 4169 chow 4170 Pekinese 4171 Chesapeake_Bay_retriever 4172 cocker_spaniel 4173 Welsh_springer_spaniel 4174 redbone 4175 Lakeland_terrier 4176 toy_poodle 4177 standard_poodle 4178 miniature_pinscher 4180 cairn 4183 Shih-Tzu 4184 Labrador_retriever 4186 Labrador_retriever 4188 Pekinese 4190 Shetland_sheepdog 4192 papillon 4193 Rhodesian_ridgeback 4194 Doberman 4196 toy_poodle 4197 English_foxhound 4199 Chihuahua 4200 Brittany_spaniel 4202 whippet 4204 Eskimo_dog 4206 bluetick 4207 chow 4208 papillon 4210 soft-coated_wheaten_terrier 4211 miniature_schnauzer 4213 cocker_spaniel 4214 beagle 4215 bull_mastiff 4217 toy_poodle 4221 beagle 4222 Tibetan_mastiff 4224 Labrador_retriever 4225 Cardigan 4226 Irish_terrier 4227 Welsh_springer_spaniel 4229 malamute 4234 clumber 4235 Chihuahua 4236 American_Staffordshire_terrier 4237 Norfolk_terrier 4238 golden_retriever 4241 cairn 4243 boxer 4245 Boston_bull 4247 Cardigan 4248 bluetick 4249 miniature_poodle 4250 German_shepherd 4251 toy_terrier 4252 chow 4253 Border_collie 4254 beagle 4255 bull_mastiff 4257 Weimaraner 4260 Japanese_spaniel 4264 Rhodesian_ridgeback 4265 toy_terrier 4268 Labrador_retriever 4269 Pekinese 4270 borzoi 4271 silky_terrier 4272 kelpie 4273 golden_retriever 4275 Scottish_deerhound 4277 Appenzeller 4278 toy_terrier 4280 Irish_terrier 4281 Chihuahua 4284 kuvasz 4288 Maltese_dog 4290 toy_poodle 4292 Gordon_setter 4294 French_bulldog 4296 papillon 4299 Rottweiler 4305 Italian_greyhound 4308 golden_retriever 4313 Pomeranian 4314 Border_terrier 4316 bull_mastiff 4319 Labrador_retriever 4320 miniature_poodle 4321 pug 4322 Italian_greyhound 4324 bull_mastiff 4325 toy_terrier 4326 toy_poodle 4327 Norwegian_elkhound 4329 Norwich_terrier 4330 Airedale 4332 Welsh_springer_spaniel 4334 Shetland_sheepdog 4335 Great_Pyrenees 4336 Appenzeller 4337 Irish_terrier 4340 golden_retriever 4341 Afghan_hound 4345 clumber 4346 Labrador_retriever 4349 borzoi 4353 French_bulldog 4354 Airedale 4356 French_bulldog 4357 beagle 4359 wire-haired_fox_terrier 4360 Boston_bull 4363 kelpie 4364 Chesapeake_Bay_retriever 4365 Old_English_sheepdog 4366 Great_Pyrenees 4367 Rottweiler 4368 Eskimo_dog 4369 kelpie 4370 miniature_pinscher 4371 Pomeranian 4372 Maltese_dog 4373 kuvasz 4374 Appenzeller 4375 Ibizan_hound 4378 Walker_hound 4379 borzoi 4381 pug 4382 Brabancon_griffon 4383 golden_retriever 4384 chow 4385 pug 4386 kuvasz 4390 Yorkshire_terrier 4391 Labrador_retriever 4392 Labrador_retriever 4393 kelpie 4394 Sealyham_terrier 4396 golden_retriever 4397 Siberian_husky 4398 miniature_pinscher 4399 Chihuahua 4401 Eskimo_dog 4402 Shetland_sheepdog 4404 Maltese_dog 4405 malamute 4406 standard_poodle 4409 kelpie 4411 Lakeland_terrier 4413 malamute 4414 Staffordshire_bullterrier 4416 Cardigan 4417 bloodhound 4418 Chihuahua 4421 Lakeland_terrier 4422 beagle 4423 whippet 4425 Lhasa 4426 bull_mastiff 4427 toy_poodle 4429 keeshond 4430 cocker_spaniel 4431 Labrador_retriever 4433 Siberian_husky 4435 Chihuahua 4436 toy_poodle 4437 Greater_Swiss_Mountain_dog 4438 basset 4440 kuvasz 4444 Maltese_dog 4445 Rottweiler 4446 miniature_schnauzer 4448 Welsh_springer_spaniel 4449 black-and-tan_coonhound 4450 Cardigan 4451 beagle 4453 Pomeranian 4454 German_short-haired_pointer 4455 Chesapeake_Bay_retriever 4458 Staffordshire_bullterrier 4459 Pembroke 4460 flat-coated_retriever 4461 Tibetan_terrier 4464 chow 4465 Irish_wolfhound 4466 Brittany_spaniel 4467 kuvasz 4468 Samoyed 4469 Chihuahua 4471 Old_English_sheepdog 4472 Rhodesian_ridgeback 4474 flat-coated_retriever 4475 Irish_setter 4476 Siberian_husky 4477 Newfoundland 4478 cocker_spaniel 4480 Sealyham_terrier 4481 Saluki 4482 toy_poodle 4483 boxer 4484 bloodhound 4485 Pekinese 4486 French_bulldog 4487 vizsla 4488 beagle 4489 Cardigan 4490 komondor 4491 Great_Dane 4492 pug 4493 American_Staffordshire_terrier 4495 Irish_terrier 4499 whippet 4500 Boston_bull 4502 Labrador_retriever 4503 Shih-Tzu 4505 French_bulldog 4507 Shetland_sheepdog 4508 French_bulldog 4509 Chihuahua 4510 boxer 4511 malinois 4512 miniature_pinscher 4513 Pekinese 4515 cocker_spaniel 4516 Labrador_retriever 4517 standard_poodle 4518 Weimaraner 4522 Great_Pyrenees 4524 boxer 4525 golden_retriever 4526 Eskimo_dog 4527 Old_English_sheepdog 4529 German_shepherd 4530 Chihuahua 4531 Chihuahua 4532 Staffordshire_bullterrier 4533 French_bulldog 4534 Irish_water_spaniel 4535 American_Staffordshire_terrier 4536 boxer 4537 Pekinese 4542 Pomeranian 4543 golden_retriever 4544 Pekinese 4545 malamute 4546 chow 4547 Great_Pyrenees 4548 American_Staffordshire_terrier 4549 Rottweiler 4550 Pomeranian 4551 Tibetan_terrier 4552 kelpie 4553 Labrador_retriever 4554 Samoyed 4555 vizsla 4556 Chihuahua 4557 Great_Pyrenees 4558 kelpie 4559 Shih-Tzu 4560 American_Staffordshire_terrier 4563 beagle 4564 collie 4565 Irish_setter 4567 Pomeranian 4568 Lakeland_terrier 4569 Airedale 4570 golden_retriever 4571 Chihuahua 4572 golden_retriever 4573 German_shepherd 4574 basset 4575 giant_schnauzer 4576 Afghan_hound 4578 soft-coated_wheaten_terrier 4579 West_Highland_white_terrier 4584 French_bulldog 4586 Cardigan 4587 French_bulldog 4588 toy_terrier 4589 toy_poodle 4590 chow 4591 Appenzeller 4593 Pomeranian 4596 Pomeranian 4597 Boston_bull 4598 Shih-Tzu 4599 Maltese_dog 4600 English_setter 4602 English_springer 4606 Norwich_terrier 4607 Great_Pyrenees 4610 American_Staffordshire_terrier 4612 Staffordshire_bullterrier 4613 Pomeranian 4614 Pomeranian 4615 Chihuahua 4616 beagle 4617 toy_poodle 4618 pug 4620 schipperke 4621 Airedale 4623 Maltese_dog 4624 Great_Pyrenees 4625 Pomeranian 4627 Siberian_husky 4628 kuvasz 4629 chow 4630 Staffordshire_bullterrier 4631 Yorkshire_terrier 4632 Pekinese 4634 Maltese_dog 4635 toy_terrier 4636 beagle 4638 miniature_pinscher 4642 malamute 4643 Airedale 4644 Great_Dane 4645 Rhodesian_ridgeback 4647 Mexican_hairless 4648 Border_collie 4649 basset 4651 Brittany_spaniel 4654 French_bulldog 4656 Labrador_retriever 4657 miniature_schnauzer 4658 German_shepherd 4659 Siberian_husky 4660 pug 4661 golden_retriever 4662 German_short-haired_pointer 4663 German_shepherd 4664 Lakeland_terrier 4665 cocker_spaniel 4666 schipperke 4667 Eskimo_dog 4668 Samoyed 4670 miniature_poodle 4671 beagle 4672 Chesapeake_Bay_retriever 4674 golden_retriever 4675 Staffordshire_bullterrier 4676 Boston_bull 4679 Great_Pyrenees 4681 American_Staffordshire_terrier 4685 Brittany_spaniel 4686 West_Highland_white_terrier 4689 Labrador_retriever 4691 Old_English_sheepdog 4693 EntleBucher 4694 Old_English_sheepdog 4695 bull_mastiff 4696 keeshond 4697 Eskimo_dog 4698 boxer 4699 kuvasz 4700 collie 4705 Pekinese 4706 Cardigan 4707 malamute 4710 Greater_Swiss_Mountain_dog 4711 Pekinese 4712 boxer 4713 bloodhound 4714 Australian_terrier 4715 Saluki 4716 Gordon_setter 4717 golden_retriever 4718 golden_retriever 4721 German_short-haired_pointer 4723 Saluki 4724 beagle 4725 Shih-Tzu 4726 Weimaraner 4727 Lhasa 4728 French_bulldog 4730 Brittany_spaniel 4731 Tibetan_mastiff 4732 toy_poodle 4733 Chihuahua 4734 American_Staffordshire_terrier 4735 toy_poodle 4736 keeshond 4737 Siberian_husky 4738 Staffordshire_bullterrier 4742 Shetland_sheepdog 4743 Border_collie 4744 bull_mastiff 4745 Saluki 4748 Italian_greyhound 4750 Pomeranian 4751 Welsh_springer_spaniel 4752 Airedale 4753 Doberman 4754 Staffordshire_bullterrier 4755 cairn 4757 papillon 4759 Chihuahua 4760 Labrador_retriever 4762 Chihuahua 4763 borzoi 4764 Lakeland_terrier 4765 chow 4767 pug 4769 Eskimo_dog 4770 malamute 4772 Brabancon_griffon 4774 Shetland_sheepdog 4776 Mexican_hairless 4777 Maltese_dog 4778 Great_Pyrenees 4779 kuvasz 4782 Saluki 4785 kelpie 4786 Airedale 4787 EntleBucher 4788 Border_collie 4789 Gordon_setter 4790 West_Highland_white_terrier 4791 Pembroke 4794 miniature_poodle 4795 toy_poodle 4796 Eskimo_dog 4799 Chihuahua 4800 Pekinese 4801 Eskimo_dog 4803 basset 4804 golden_retriever 4805 Rhodesian_ridgeback 4806 boxer 4807 Yorkshire_terrier 4808 golden_retriever 4809 Tibetan_terrier 4810 Rhodesian_ridgeback 4811 kuvasz 4815 Eskimo_dog 4816 Boston_bull 4817 German_short-haired_pointer 4819 schipperke 4820 Chihuahua 4821 Shih-Tzu 4822 Maltese_dog 4823 Saint_Bernard 4824 silky_terrier 4828 Chihuahua 4830 Lhasa 4831 Border_collie 4832 Pekinese 4833 Pekinese 4834 Pembroke 4835 West_Highland_white_terrier 4836 Afghan_hound 4839 Great_Pyrenees 4840 giant_schnauzer 4841 vizsla 4842 Scottish_deerhound 4845 Greater_Swiss_Mountain_dog 4846 basenji 4847 Eskimo_dog 4848 Doberman 4849 whippet 4850 Norfolk_terrier 4851 pug 4853 bull_mastiff 4854 Pembroke 4855 Tibetan_terrier 4857 German_short-haired_pointer 4858 Shetland_sheepdog 4859 American_Staffordshire_terrier 4860 Labrador_retriever 4861 dalmatian 4862 Staffordshire_bullterrier 4863 Staffordshire_bullterrier 4865 boxer 4866 West_Highland_white_terrier 4867 beagle 4869 curly-coated_retriever 4871 golden_retriever 4872 Weimaraner 4873 Maltese_dog 4874 kelpie 4877 Border_terrier 4878 Eskimo_dog 4879 bull_mastiff 4880 Labrador_retriever 4881 Chihuahua 4883 otterhound 4884 Great_Dane 4885 Norwegian_elkhound 4886 Labrador_retriever 4887 pug 4888 Dandie_Dinmont 4891 Staffordshire_bullterrier 4892 Siberian_husky 4894 Great_Dane 4895 Chihuahua 4896 Maltese_dog 4898 whippet 4899 Samoyed 4900 West_Highland_white_terrier 4901 basenji 4902 toy_terrier 4903 Australian_terrier 4904 toy_terrier 4906 standard_poodle 4907 Yorkshire_terrier 4908 cocker_spaniel 4909 American_Staffordshire_terrier 4910 Old_English_sheepdog 4911 silky_terrier 4913 clumber 4914 Brittany_spaniel 4917 Cardigan 4918 kuvasz 4919 English_springer 4920 Tibetan_mastiff 4922 Italian_greyhound 4923 Cardigan 4925 bull_mastiff 4926 curly-coated_retriever 4927 golden_retriever 4929 Brittany_spaniel 4930 Chihuahua 4932 Labrador_retriever 4933 basenji 4935 Tibetan_mastiff 4937 Norwich_terrier 4938 otterhound 4939 Pomeranian 4940 Mexican_hairless 4941 Mexican_hairless 4942 Pembroke 4945 miniature_pinscher 4946 golden_retriever 4947 groenendael 4948 chow 4949 bull_mastiff 4950 Great_Pyrenees 4951 Saint_Bernard 4952 Staffordshire_bullterrier 4953 bloodhound 4954 Appenzeller 4956 Pomeranian 4959 Norwich_terrier 4961 toy_terrier 4962 Pekinese 4963 French_bulldog 4964 kuvasz 4966 Appenzeller 4967 cocker_spaniel 4968 toy_terrier 4969 giant_schnauzer 4970 Great_Pyrenees 4971 Chesapeake_Bay_retriever 4973 American_Staffordshire_terrier 4974 Chihuahua 4978 kelpie 4979 chow 4980 Cardigan 4981 toy_terrier 4982 Boston_bull 4984 Pembroke 4985 Norfolk_terrier 4986 Labrador_retriever 4987 West_Highland_white_terrier 4988 Norfolk_terrier 4989 malamute 4990 Boston_bull 4991 Labrador_retriever 4992 Labrador_retriever 4993 English_setter 4995 golden_retriever 4996 keeshond 4997 Norfolk_terrier 4998 flat-coated_retriever 4999 Labrador_retriever 5000 Australian_terrier 5001 West_Highland_white_terrier 5003 Chihuahua 5004 cocker_spaniel 5005 Japanese_spaniel 5006 cocker_spaniel 5007 Labrador_retriever 5008 Lakeland_terrier 5009 Tibetan_terrier 5010 malamute 5011 cairn 5012 German_shepherd 5013 basenji 5014 Pembroke 5015 pug 5016 Dandie_Dinmont 5017 basenji 5020 Eskimo_dog 5021 standard_poodle 5024 Lhasa 5026 Chesapeake_Bay_retriever 5027 Labrador_retriever 5028 Chihuahua 5029 Irish_wolfhound 5030 pug 5031 Siberian_husky 5032 Great_Dane 5033 kuvasz 5034 Welsh_springer_spaniel 5035 Irish_setter 5036 malamute 5037 redbone 5038 German_shepherd 5039 Great_Pyrenees 5040 beagle 5041 golden_retriever 5043 kuvasz 5044 Ibizan_hound 5045 Cardigan 5046 Labrador_retriever 5047 Boston_bull 5048 Lakeland_terrier 5050 chow 5051 French_bulldog 5052 toy_poodle 5053 bull_mastiff 5054 Tibetan_mastiff 5055 cairn 5056 Eskimo_dog 5057 golden_retriever 5058 bull_mastiff 5059 malamute 5060 cocker_spaniel 5061 beagle 5062 kuvasz 5065 Eskimo_dog 5066 Siberian_husky 5068 kelpie 5069 cairn 5070 Chesapeake_Bay_retriever 5073 Labrador_retriever 5074 Norfolk_terrier 5075 Leonberg 5076 Tibetan_terrier 5077 Eskimo_dog 5079 Labrador_retriever 5081 Italian_greyhound 5083 Eskimo_dog 5085 giant_schnauzer 5086 kelpie 5088 Pekinese 5089 chow 5090 Weimaraner 5091 Norwegian_elkhound 5093 Irish_terrier 5094 chow 5096 Great_Dane 5097 Shetland_sheepdog 5099 English_setter 5100 cocker_spaniel 5101 French_bulldog 5102 kuvasz 5103 Chesapeake_Bay_retriever 5105 Labrador_retriever 5106 Chesapeake_Bay_retriever 5107 Lakeland_terrier 5108 Labrador_retriever 5109 Chihuahua 5110 Tibetan_terrier 5111 chow 5112 Labrador_retriever 5113 Eskimo_dog 5115 Shih-Tzu 5116 German_shepherd 5117 keeshond 5120 borzoi 5121 Chihuahua 5122 miniature_poodle 5124 basenji 5129 German_shepherd 5130 Staffordshire_bullterrier 5131 Weimaraner 5132 Newfoundland 5134 Chihuahua 5135 cocker_spaniel 5136 golden_retriever 5137 miniature_pinscher 5138 chow 5143 Tibetan_terrier 5144 Saint_Bernard 5145 malamute 5146 Labrador_retriever 5147 Old_English_sheepdog 5148 English_foxhound 5152 Cardigan 5153 soft-coated_wheaten_terrier 5154 bluetick 5155 cocker_spaniel 5157 Labrador_retriever 5160 Maltese_dog 5161 Chihuahua 5163 Chesapeake_Bay_retriever 5165 malamute 5166 Great_Pyrenees 5167 Chihuahua 5168 Pembroke 5169 Chesapeake_Bay_retriever 5170 American_Staffordshire_terrier 5171 malamute 5172 beagle 5174 Brittany_spaniel 5175 miniature_poodle 5176 vizsla 5177 toy_poodle 5178 vizsla 5179 Labrador_retriever 5181 Labrador_retriever 5185 Siberian_husky 5186 kelpie 5187 Pekinese 5188 vizsla 5189 Chesapeake_Bay_retriever 5190 Labrador_retriever 5193 Appenzeller 5194 French_bulldog 5197 Labrador_retriever 5198 golden_retriever 5199 Eskimo_dog 5201 Great_Pyrenees 5203 Great_Dane 5204 German_short-haired_pointer 5205 pug 5206 whippet 5208 collie 5209 miniature_poodle 5210 Tibetan_terrier 5211 Border_collie 5216 cocker_spaniel 5217 borzoi 5218 Norwich_terrier 5220 affenpinscher 5222 Cardigan 5223 Ibizan_hound 5224 Italian_greyhound 5228 collie 5230 German_shepherd 5231 Chihuahua 5232 Labrador_retriever 5233 Shetland_sheepdog 5234 Chihuahua 5235 pug 5236 Great_Pyrenees 5239 Pembroke 5240 Saluki 5241 miniature_poodle 5242 soft-coated_wheaten_terrier 5244 kelpie 5246 English_setter 5247 English_setter 5248 Samoyed 5249 Pekinese 5251 keeshond 5252 Irish_water_spaniel 5253 collie 5254 Blenheim_spaniel 5256 soft-coated_wheaten_terrier 5258 toy_poodle 5259 golden_retriever 5260 Labrador_retriever 5261 miniature_pinscher 5262 Brabancon_griffon 5263 Labrador_retriever 5264 Pekinese 5266 French_bulldog 5267 papillon 5270 basenji 5272 golden_retriever 5273 golden_retriever 5274 English_foxhound 5275 chow 5278 Scottish_deerhound 5280 golden_retriever 5281 Chihuahua 5282 wire-haired_fox_terrier 5283 Eskimo_dog 5284 basset 5285 Siberian_husky 5286 kelpie 5287 Shetland_sheepdog 5288 Siberian_husky 5290 English_foxhound 5292 Italian_greyhound 5293 boxer 5294 Pomeranian 5295 English_foxhound 5298 cocker_spaniel 5299 Great_Pyrenees 5301 Great_Pyrenees 5302 bloodhound 5304 Labrador_retriever 5306 Cardigan 5307 Labrador_retriever 5308 Border_terrier 5310 Rottweiler 5311 Tibetan_mastiff 5313 Walker_hound 5315 Siberian_husky 5316 Bernese_mountain_dog 5319 American_Staffordshire_terrier 5320 German_shepherd 5321 curly-coated_retriever 5322 Weimaraner 5323 komondor 5324 golden_retriever 5325 Siberian_husky 5328 Labrador_retriever 5329 kuvasz 5330 otterhound 5331 pug 5334 briard 5335 West_Highland_white_terrier 5337 redbone 5338 borzoi 5339 Labrador_retriever 5340 boxer 5341 miniature_poodle 5342 German_shepherd 5343 Doberman 5346 Staffordshire_bullterrier 5350 toy_poodle 5352 chow 5354 keeshond 5355 kelpie 5356 EntleBucher 5357 American_Staffordshire_terrier 5358 kuvasz 5359 Shetland_sheepdog 5360 basset 5361 Border_terrier 5362 Brittany_spaniel 5363 basset 5364 cocker_spaniel 5365 Norwegian_elkhound 5366 Rhodesian_ridgeback 5367 bloodhound 5368 Irish_terrier 5370 Norfolk_terrier 5371 Chesapeake_Bay_retriever 5374 kelpie 5375 Labrador_retriever 5376 whippet 5377 Rottweiler 5379 cocker_spaniel 5380 kuvasz 5381 Staffordshire_bullterrier 5382 Staffordshire_bullterrier 5383 whippet 5384 golden_retriever 5386 Pomeranian 5387 EntleBucher 5389 Staffordshire_bullterrier 5391 English_springer 5393 Border_collie 5394 Shetland_sheepdog 5395 Italian_greyhound 5396 golden_retriever 5397 vizsla 5398 Pekinese 5399 Saint_Bernard 5400 beagle 5402 Welsh_springer_spaniel 5403 Brabancon_griffon 5405 malamute 5406 soft-coated_wheaten_terrier 5407 Airedale 5408 chow 5409 pug 5410 Saluki 5411 Ibizan_hound 5412 Lakeland_terrier 5413 Pomeranian 5414 Pembroke 5417 French_bulldog 5420 bloodhound 5421 keeshond 5423 standard_poodle 5425 Pomeranian 5426 otterhound 5427 Siberian_husky 5428 Lhasa 5429 Norwegian_elkhound 5431 Border_collie 5432 beagle 5433 Lakeland_terrier 5434 kelpie 5435 American_Staffordshire_terrier 5436 Chihuahua 5437 kelpie 5438 cocker_spaniel 5440 Great_Pyrenees 5442 bull_mastiff 5443 Tibetan_mastiff 5444 English_springer 5445 Pembroke 5446 kelpie 5448 Border_collie 5450 Labrador_retriever 5451 collie 5453 Lhasa 5454 Eskimo_dog 5456 clumber 5457 Labrador_retriever 5458 boxer 5459 Pembroke 5460 keeshond 5461 toy_terrier 5462 Australian_terrier 5463 standard_poodle 5465 standard_poodle 5466 Siberian_husky 5467 Irish_setter 5468 Samoyed 5469 chow 5470 Rottweiler 5472 Pekinese 5473 chow 5474 Staffordshire_bullterrier 5475 Saluki 5476 chow 5477 Pomeranian 5478 chow 5479 Labrador_retriever 5481 miniature_pinscher 5482 kelpie 5483 English_setter 5485 Chihuahua 5487 Brittany_spaniel 5489 golden_retriever 5490 Pembroke 5491 Eskimo_dog 5492 Norwegian_elkhound 5493 Labrador_retriever 5494 Pomeranian 5495 golden_retriever 5496 curly-coated_retriever 5497 toy_terrier 5498 kelpie 5499 Appenzeller 5500 chow 5501 Newfoundland 5502 Doberman 5503 basenji 5504 kuvasz 5505 Tibetan_terrier 5506 miniature_poodle 5507 Australian_terrier 5508 standard_poodle 5510 kuvasz 5512 standard_poodle 5514 Airedale 5515 Chihuahua 5516 Boston_bull 5517 English_springer 5518 cocker_spaniel 5519 beagle 5520 Pembroke 5522 Chesapeake_Bay_retriever 5523 toy_terrier 5524 Kerry_blue_terrier 5525 Staffordshire_bullterrier 5527 Great_Pyrenees 5528 toy_poodle 5531 soft-coated_wheaten_terrier 5534 papillon 5537 Australian_terrier 5538 Weimaraner 5539 Pembroke 5540 kelpie 5541 papillon 5542 Staffordshire_bullterrier 5543 Pomeranian 5544 Norfolk_terrier 5545 malamute 5546 Australian_terrier 5547 Eskimo_dog 5548 toy_terrier 5549 Shetland_sheepdog 5551 Labrador_retriever 5552 collie 5554 Chihuahua 5555 toy_poodle 5556 bluetick 5557 English_setter 5559 Shetland_sheepdog 5560 Labrador_retriever 5561 malamute 5562 Rhodesian_ridgeback 5564 cocker_spaniel 5565 Pomeranian 5566 golden_retriever 5568 Great_Pyrenees 5569 Irish_terrier 5571 Leonberg 5572 Cardigan 5574 Border_terrier 5575 Eskimo_dog 5576 Leonberg 5577 Eskimo_dog 5578 Chesapeake_Bay_retriever 5579 cocker_spaniel 5580 Welsh_springer_spaniel 5581 toy_terrier 5582 chow 5583 American_Staffordshire_terrier 5584 Great_Pyrenees 5585 Irish_terrier 5586 golden_retriever 5587 kelpie 5588 Labrador_retriever 5589 Pembroke 5590 English_springer 5591 miniature_poodle 5592 Border_terrier 5593 Tibetan_mastiff 5594 Eskimo_dog 5595 curly-coated_retriever 5596 Labrador_retriever 5597 beagle 5598 wire-haired_fox_terrier 5599 golden_retriever 5601 Labrador_retriever 5602 Great_Dane 5604 Leonberg 5605 French_bulldog 5606 kuvasz 5607 basenji 5608 miniature_pinscher 5609 kelpie 5610 basenji 5611 Siberian_husky 5612 Italian_greyhound 5613 Cardigan 5614 cocker_spaniel 5615 Saluki 5616 Labrador_retriever 5617 West_Highland_white_terrier 5618 Eskimo_dog 5619 boxer 5620 Norwegian_elkhound 5621 chow 5622 soft-coated_wheaten_terrier 5623 cocker_spaniel 5624 American_Staffordshire_terrier 5626 malinois 5627 collie 5628 otterhound 5629 Staffordshire_bullterrier 5630 papillon 5631 golden_retriever 5633 Maltese_dog 5634 Siberian_husky 5635 German_shepherd 5636 golden_retriever 5637 Chesapeake_Bay_retriever 5638 miniature_pinscher 5639 Eskimo_dog 5640 Boston_bull 5641 Irish_water_spaniel 5642 Pekinese 5643 redbone 5644 standard_schnauzer 5646 beagle 5648 Tibetan_terrier 5650 Norwegian_elkhound 5651 Doberman 5652 Shetland_sheepdog 5653 toy_poodle 5655 Italian_greyhound 5657 Rottweiler 5658 Samoyed 5659 Labrador_retriever 5660 Tibetan_mastiff 5661 Yorkshire_terrier 5662 Irish_setter 5663 Chesapeake_Bay_retriever 5664 miniature_pinscher 5665 Saluki 5666 Irish_setter 5668 Maltese_dog 5669 kuvasz 5670 Norwich_terrier 5671 Staffordshire_bullterrier 5672 Irish_terrier 5673 Pembroke 5674 papillon 5675 Pembroke 5676 Norfolk_terrier 5677 Labrador_retriever 5679 basenji 5680 Irish_setter 5681 Airedale 5682 malamute 5683 toy_poodle 5684 black-and-tan_coonhound 5685 English_setter 5687 kuvasz 5688 soft-coated_wheaten_terrier 5689 Boston_bull 5690 kelpie 5692 Pekinese 5694 boxer 5695 Labrador_retriever 5696 Labrador_retriever 5697 Saint_Bernard 5698 kelpie 5699 bull_mastiff 5701 Tibetan_mastiff 5702 Chihuahua 5703 clumber 5704 American_Staffordshire_terrier 5705 standard_poodle 5706 vizsla 5711 Chesapeake_Bay_retriever 5712 Pekinese 5713 pug 5714 American_Staffordshire_terrier 5715 Pekinese 5716 pug 5717 English_setter 5719 Labrador_retriever 5720 Bouvier_des_Flandres 5722 French_bulldog 5723 Norwegian_elkhound 5724 Appenzeller 5725 Leonberg 5727 Italian_greyhound 5728 pug 5729 Staffordshire_bullterrier 5731 malamute 5732 Boston_bull 5733 bull_mastiff 5735 Tibetan_mastiff 5736 Lakeland_terrier 5737 Pembroke 5738 golden_retriever 5739 Labrador_retriever 5741 Labrador_retriever 5742 redbone 5744 Boston_bull 5745 Irish_terrier 5746 Staffordshire_bullterrier 5747 Cardigan 5749 Gordon_setter 5750 American_Staffordshire_terrier 5751 malamute 5752 Pembroke 5755 schipperke 5756 toy_poodle 5757 malamute 5758 dalmatian 5761 kuvasz 5762 Pomeranian 5763 Newfoundland 5764 dalmatian 5765 Yorkshire_terrier 5766 Saint_Bernard 5767 Pembroke 5768 Boston_bull 5769 kelpie 5771 Labrador_retriever 5773 clumber 5774 bloodhound 5775 groenendael 5776 Pembroke 5777 schipperke 5778 bull_mastiff 5779 basenji 5780 Labrador_retriever 5781 Chihuahua 5782 Chihuahua 5783 Great_Pyrenees 5784 Great_Pyrenees 5785 Newfoundland 5787 beagle 5788 Chihuahua 5789 Shetland_sheepdog 5790 curly-coated_retriever 5791 West_Highland_white_terrier 5792 Newfoundland 5794 Tibetan_mastiff 5795 Labrador_retriever 5796 Norfolk_terrier 5797 collie 5799 pug 5800 Lakeland_terrier 5802 Appenzeller 5805 Eskimo_dog 5806 groenendael 5809 Chihuahua 5811 Pembroke 5812 malinois 5813 Shih-Tzu 5814 French_bulldog 5815 standard_poodle 5817 French_bulldog 5818 EntleBucher 5821 Rottweiler 5822 Sussex_spaniel 5823 English_foxhound 5825 kelpie 5826 Rottweiler 5827 Border_collie 5828 bluetick 5829 Chihuahua 5830 Labrador_retriever 5831 chow 5832 Japanese_spaniel 5833 groenendael 5834 Cardigan 5835 standard_poodle 5836 Chihuahua 5837 Saluki 5838 keeshond 5839 Eskimo_dog 5840 golden_retriever 5841 Lakeland_terrier 5843 basenji 5844 bloodhound 5847 Labrador_retriever 5848 kuvasz 5852 Lakeland_terrier 5853 beagle 5855 Bouvier_des_Flandres 5856 French_bulldog 5857 Pekinese 5859 boxer 5860 German_shepherd 5861 boxer 5863 beagle 5864 Siberian_husky 5866 Tibetan_mastiff 5867 Staffordshire_bullterrier 5869 basenji 5870 Weimaraner 5871 Labrador_retriever 5872 keeshond 5873 pug 5874 curly-coated_retriever 5875 Pomeranian 5876 malamute 5877 collie 5878 dalmatian 5879 American_Staffordshire_terrier 5880 Saint_Bernard 5882 Cardigan 5884 Chihuahua 5885 malamute 5887 EntleBucher 5888 Labrador_retriever 5889 beagle 5893 bloodhound 5894 Pomeranian 5895 dalmatian 5896 Chesapeake_Bay_retriever 5897 Chihuahua 5898 standard_poodle 5899 bull_mastiff 5900 German_short-haired_pointer 5901 Chesapeake_Bay_retriever 5902 chow 5903 kelpie 5904 Newfoundland 5905 toy_poodle 5906 beagle 5907 Great_Pyrenees 5909 vizsla 5910 Greater_Swiss_Mountain_dog 5911 chow 5912 Tibetan_mastiff 5913 basenji 5914 golden_retriever 5916 Weimaraner 5917 toy_terrier 5918 Appenzeller 5919 Ibizan_hound 5920 American_Staffordshire_terrier 5922 Pembroke 5923 Cardigan 5925 cocker_spaniel 5926 beagle 5927 clumber 5928 cocker_spaniel 5929 Chihuahua 5933 golden_retriever 5935 golden_retriever 5936 cocker_spaniel 5937 Cardigan 5938 flat-coated_retriever 5940 kuvasz 5941 Newfoundland 5942 kuvasz 5943 kelpie 5944 Norwegian_elkhound 5945 Chihuahua 5946 Brabancon_griffon 5947 Norfolk_terrier 5948 Staffordshire_bullterrier 5949 Eskimo_dog 5950 kuvasz 5951 Bernese_mountain_dog 5953 Boston_bull 5955 Dandie_Dinmont 5957 Staffordshire_bullterrier 5958 Weimaraner 5959 beagle 5961 Weimaraner 5962 bull_mastiff 5963 malamute 5964 English_setter 5965 Labrador_retriever 5966 Saluki 5967 redbone 5968 Staffordshire_bullterrier 5969 basenji 5971 chow 5972 Chihuahua 5973 Chesapeake_Bay_retriever 5974 Pembroke 5977 German_short-haired_pointer 5979 kelpie 5980 papillon Name: prediction, dtype: object
#check if we have values '1', '2', '3' as we wanted, in the prediction_num column
melted_df['prediction_num'].value_counts()
1 1994 2 1994 3 1994 Name: prediction_num, dtype: int64
melted_df['tweet_id'].duplicated().sum()
3988
If we would like to work with the datfrmae where tweet_ids are not duplicated, we could group by tweet_id and keep only the predictions with the highest confidence.
I decided to keep duplicated tweet_id as the records for them are not identical.
But if I would decide to do the opposite, I would use the code hashtagged below with the following steps:
Remove rows where p1_dog, p2_dog, and p3_dog are all False (i.e., none of the predictions are dogs). Group predictions into one column and their corresponding confidence scores into another column. Ensure that tweet_id is not duplicated. Steps Remove Duplicated jpg_url:
Drop duplicates based on jpg_url while keeping the first occurrence. Remove Rows Where None of the Predictions are Dogs:
Filter out rows where p1_dog, p2_dog, and p3_dog are all False. Group Predictions and Confidence Scores:
Combine the p1, p2, and p3 columns into a single prediction column. Combine the p1_conf, p2_conf, and p3_conf columns into a single confidence column. Ensure No Duplicated tweet_id:
Group by tweet_id and keep the prediction with the highest confidence.
# # 2. Remove rows where all p1_dog, p2_dog, and p3_dog are False
# predictions_clean = predictions_clean[~((predictions_clean['p1_dog'] == False) &
# (predictions_clean['p2_dog'] == False) &
# (predictions_clean['p3_dog'] == False))]
# # 3. Group predictions and confidence scores into single columns
# # Melt the DataFrame to long format
# melted_df = predictions_clean.melt(
# id_vars=['tweet_id', 'jpg_url', 'img_num'],
# value_vars=['p1', 'p2', 'p3'],
# var_name='prediction_num',
# value_name='prediction')
# # Melt the DataFrame to get confidence scores
# melted_conf = predictions_clean.melt(
# id_vars=['tweet_id', 'jpg_url', 'img_num'],
# value_vars=['p1_conf', 'p2_conf', 'p3_conf'],
# var_name='confidence_num',
# value_name='confidence'
# )
# # Merge the two melted DataFrames on common columns
# #melted_df['confidence'] = melted_conf['confidence']
# melted_df['tweet_id'] = melted_conf['tweet_id']
# 4. Ensure no duplicated tweet_id by keeping the prediction with the highest confidence
#final_predictions = melted_df.loc[melted_df.groupby('tweet_id')['confidence'].idxmax()].reset_index(drop=True)
# Display the cleaned and transformed DataFrame
# print(final_predictions.head())
#predictions_clean = final_predictions.copy()
We will continue with melted_df, which copy we will use as predictions_clean
#copy melted_df as predictions_clean
predictions_clean = melted_df.copy()
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
it is We rate dogs project, so we want to keep only the records with images of dogs. In order to do so, we need to remove the records for tweet_id in archive_clean which are not present in predictions_clean.
# Extract tweet_id values from predictions_clean
predicted_tweet_ids = predictions_clean['tweet_id']
# Filter archive_clean to keep only rows with tweet_id present in predictions_clean
archive_clean = archive_clean[archive_clean['tweet_id'].isin(predicted_tweet_ids)]
#check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1994 entries, 0 to 2355 Data columns (total 14 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1994 non-null int64 1 in_reply_to_status_id 23 non-null float64 2 in_reply_to_user_id 23 non-null float64 3 timestamp 1994 non-null object 4 source 1994 non-null object 5 text 1994 non-null object 6 expanded_urls 1994 non-null object 7 rating_numerator 1994 non-null int64 8 rating_denominator 1994 non-null int64 9 name 1994 non-null object 10 doggo 1994 non-null object 11 floofer 1994 non-null object 12 pupper 1994 non-null object 13 puppo 1994 non-null object dtypes: float64(2), int64(3), object(9) memory usage: 233.7+ KB
# check
print("Filtered archive_clean shape:", archive_clean.shape)
print("First few rows of the filtered archive_clean:\n", archive_clean.head())
Filtered archive_clean shape: (1994, 14)
First few rows of the filtered archive_clean:
tweet_id in_reply_to_status_id in_reply_to_user_id \
0 892420643555336193 NaN NaN
1 892177421306343426 NaN NaN
2 891815181378084864 NaN NaN
3 891689557279858688 NaN NaN
4 891327558926688256 NaN NaN
timestamp \
0 2017-08-01 16:23:56 +0000
1 2017-08-01 00:17:27 +0000
2 2017-07-31 00:18:03 +0000
3 2017-07-30 15:58:51 +0000
4 2017-07-29 16:00:24 +0000
source \
0 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
2 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
3 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
4 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text \
0 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU
1 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV
2 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB
3 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ
4 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f
expanded_urls \
0 https://twitter.com/dog_rates/status/892420643555336193/photo/1
1 https://twitter.com/dog_rates/status/892177421306343426/photo/1
2 https://twitter.com/dog_rates/status/891815181378084864/photo/1
3 https://twitter.com/dog_rates/status/891689557279858688/photo/1
4 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1
rating_numerator rating_denominator name doggo floofer pupper puppo
0 13 10 Phineas None None None None
1 13 10 Tilly None None None None
2 12 10 Archie None None None None
3 13 10 Darla None None None None
4 12 10 Franklin None None None None
#just to be sure, check if archive_clean and predictions_clean have the same amounth of the unique tweet_ids:
unique_tweet_ids_archive = archive_clean['tweet_id'].nunique()
unique_tweet_ids_predictions = predictions_clean['tweet_id'].nunique()
# Compare the number of unique tweet_ids
same_number_of_tweets = unique_tweet_ids_archive == unique_tweet_ids_predictions
# Print results
print(f"Number of unique tweet_id in archive_clean: {unique_tweet_ids_archive}")
print(f"Number of unique tweet_id in predictions_clean: {unique_tweet_ids_predictions}")
print(f"Do both DataFrames have the same number of tweet_id? {same_number_of_tweets}")
Number of unique tweet_id in archive_clean: 1994 Number of unique tweet_id in predictions_clean: 1994 Do both DataFrames have the same number of tweet_id? True
#to ensure the integrity of data we will add assertion with a statement if the counts don't match
#(https://docs.python.org/3/reference/simple_stmts.html)
#(https://www.browserstack.com/guide/assert-in-python)
assert unique_tweet_ids_archive == unique_tweet_ids_predictions,"The number of unique tweet_id values does not match between archive_clean and predictions_clean."
if not same_number_of_tweets:
print("Mismatch in the number of tweets between DataFrames:")
print(f"archive_clean unique tweet_id count: {unique_tweet_ids_archive}")
print(f"predictions_clean unique tweet_id count: {unique_tweet_ids_predictions}")
#check
predictions_clean.head()
| tweet_id | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 1 | Welsh_springer_spaniel | 0.465074 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 1 | redbone | 0.506826 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 1 | German_shepherd | 0.596461 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 1 | Rhodesian_ridgeback | 0.408143 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 1 | miniature_pinscher | 0.560311 | True |
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
For further analysis, the data type of the values in column prediction_num should be integer.
#change datatype of column prediction_num to integer
predictions_clean['prediction_num'] = predictions_clean['prediction_num'].astype(int)
#check
predictions_clean['prediction_num'].dtype
dtype('int32')
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
In archive_clean, We will correct the values in the dog name column and combine the stage columns.
Remove the values starting with the lowecase letter as these are not names
# Define a condition to check for non-NaN values
# and filter out rows where the 'name' column starts with a lowercase letter
condition = archive_clean['name'].notna() & ~archive_clean['name'].str.match('^[a-z]')
# Apply the condition to the DataFrame to keep only the rows that meet the condition
archive_clean_filtered = archive_clean[condition]
# Update the original DataFrame
archive_clean = archive_clean_filtered
# check
archive_clean.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | https://twitter.com/dog_rates/status/892420643555336193/photo/1 | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | https://twitter.com/dog_rates/status/892177421306343426/photo/1 | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | https://twitter.com/dog_rates/status/891815181378084864/photo/1 | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | https://twitter.com/dog_rates/status/891689557279858688/photo/1 | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1 | 12 | 10 | Franklin | None | None | None | None |
Replace None with NaN in the 'name' column for clarity
# Replace None with NaN in the 'name' column
archive_clean.loc[archive_clean['name']=='None', 'name'] = np.nan
#check
archive_clean['name']
0 Phineas 1 Tilly 2 Archie 3 Darla 4 Franklin 5 NaN 6 Jax 7 NaN 8 Zoey 9 Cassie 10 Koda 11 Bruno 12 NaN 13 Ted 14 Stuart 15 Oliver 16 Jim 17 Zeke 18 Ralphus 20 Gerald 21 Jeffrey 23 Canela 24 NaN 25 NaN 26 Maya 27 Mingus 28 Derek 29 Roscoe 31 Waffles 33 Jimbo 34 Maisey 37 NaN 38 Earl 39 Lola 40 Kevin 41 NaN 43 Yogi 44 Noah 45 Bella 46 Grizzwald 47 NaN 48 Rusty 49 Gus 50 Stanley 51 Alfy 52 Koko 53 Rey 54 Gary 57 Elliot 58 Louis 59 NaN 60 Bella 61 Jesse 62 NaN 63 Romeo 65 Bailey 66 Duddles 67 Jack 69 Steven 70 Beau 71 Snoopy 75 Shadow 76 Emmy 77 Aja 79 Penny 80 Dante 81 Nelly 82 Ginger 84 Benedict 85 Venti 86 Goose 87 Nugget 89 NaN 90 Cash 92 Jed 93 NaN 94 Sebastian 96 NaN 98 Sierra 99 NaN 100 NaN 102 Monkey 103 NaN 104 Harry 105 Kody 106 Lassie 107 Rover 108 Napolean 111 Boomer 112 NaN 114 Cody 115 Zoey 116 Rumble 117 Clifford 119 Dewey 120 Stanley 121 Scout 122 Gizmo 123 Walter 125 NaN 126 Cooper 127 NaN 128 Harold 129 Shikha 131 NaN 134 Lili 135 Jamesy 136 Coco 138 Boomer 139 Sammy 140 Nelly 141 NaN 142 Meatball 143 Paisley 144 Albus 145 Neptune 147 Belle 149 NaN 150 Quinn 151 Zooey 152 Dave 153 Jersey 154 NaN 156 Hobbes 157 NaN 158 Burt 161 Lorenzo 162 Carl 163 Jordy 164 NaN 166 Milky 167 Trooper 168 NaN 170 NaN 172 NaN 173 Sophie 174 Wyatt 175 Rosie 176 Thor 177 NaN 178 Oscar 181 Zeke 183 Callie 184 NaN 187 Cermet 191 NaN 196 Marlee 197 Arya 198 Einstein 199 NaN 200 NaN 201 Alice 202 NaN 203 Rumpole 205 Benny 206 Aspen 207 Jarod 208 Wiggles 209 General 210 Sailor 213 NaN 214 Iggy 215 Snoop 216 Kyle 217 Leo 219 Riley 220 Boomer 221 NaN 223 Noosh 224 NaN 225 Kevin 226 NaN 227 Odin 229 Jerry 232 Georgie 233 Rontu 235 Cannon 236 Furzey 237 Daisy 238 NaN 239 Tuck 240 Barney 242 Vixen 244 Jarvis 245 NaN 246 NaN 248 Mimosa 249 Pickles 251 NaN 252 Brady 253 Luna 254 Charlie 255 Margo 257 Sadie 258 Hank 259 Tycho 261 Charlie 262 Indie 263 Winnie 264 George 265 Bentley 267 Penny 268 NaN 270 Max 271 Dawn 275 NaN 276 Maddie 277 NaN 278 Monty 279 Sojourner 280 Winston 282 Odie 284 Arlo 287 Walter 288 Stanley 292 Daisy 293 NaN 294 Waffles 295 Vincent 296 Lucy 297 Clark 299 Mookie 300 Meera 301 Oliver 304 Ava 305 Lucy 306 NaN 308 Eli 311 Ash 312 Lola 314 NaN 315 NaN 316 Tucker 317 Tobi 318 NaN 320 Chester 321 Wilson 322 Sunshine 324 Lipton 325 Bentley 326 Charlie 328 Bronte 329 Poppy 330 Gidget 331 Rhino 333 Willow 336 Orion 337 Eevee 338 Charlie 339 Smiley 344 Miguel 345 Emanuel 347 Kuyu 348 Daisy 349 NaN 350 Dutch 351 Pete 352 NaN 353 Scooter 354 Tucker 355 Reggie 356 Lilly 358 Samson 360 Mia 361 Leo 362 NaN 363 Astrid 364 Malcolm 365 Dexter 367 Alfie 368 Fiona 370 Mutt 371 Bear 372 Doobert 373 Beebop 374 Alexander 376 Sailer 377 Brutus 378 Kona 379 Boots 380 Tucker 381 Ralphie 383 Charlie 384 Loki 385 Cupid 388 Pawnd 389 Pilot 390 NaN 391 NaN 392 Ike 393 Mo 394 Toby 395 NaN 396 Sweet 398 Pablo 400 Scooter 401 Wilson 402 NaN 403 Nala 405 Cash 407 Winston 408 Crawford 410 Wyatt 412 Albus 413 NaN 414 Hobbes 416 NaN 417 Paisley 418 Gabe 419 NaN 421 Jimison 423 Duchess 424 Harlso 426 Sundance 428 Luca 429 NaN 430 Flash 432 Sunny 433 NaN 436 NaN 437 NaN 439 Oliver 440 NaN 441 Howie 442 Jazzy 443 Anna 445 Finn 448 Sunny 449 Bo 451 Wafer 452 Bear 454 Tom 456 Florence 457 Autumn 459 Buddy 460 Dido 461 Eugene 463 Ken 464 Strudel 466 Tebow 467 NaN 468 Chloe 470 Timber 471 Binky 472 Moose 473 Dudley 474 Comet 477 Jack 478 NaN 480 Akumi 481 Titan 482 NaN 483 Cooper 484 Olivia 486 Alf 487 Oshie 489 Chubbs 490 Gary 491 Sky 492 Atlas 493 NaN 494 NaN 495 Eleanor 496 Layla 497 NaN 499 NaN 500 Toby 501 Rocky 502 Baron 503 Tyr 504 Bauer 505 Swagger 507 Brandi 508 NaN 509 Mary 510 Moe 511 Ted 512 Halo 514 Augie 515 Craig 516 Sam 517 Hunter 518 Pavlov 519 Phil 520 Gus 521 NaN 523 NaN 524 Kyro 525 Wallace 526 Ito 527 NaN 528 Koda 531 NaN 532 Cooper 533 Ollie 534 Stephan 536 Lennon 537 NaN 540 Waffles 544 Major 545 Duke 547 Zeke 548 Sansa 549 Shooter 550 Django 553 Bo 554 Diogi 556 NaN 557 Sonny 559 Winston 560 Marley 563 Winnie 564 Severus 565 NaN 567 Loki 569 Ronnie 571 Wallace 572 NaN 573 Milo 575 Bones 578 Mauve 579 Chef 580 NaN 582 Doc 584 Peaches 585 NaN 587 Sobe 588 Longfellow 590 Jeffrey 591 Mister 592 Iroh 593 Shadow 607 Cooper 608 NaN 609 Cassie 610 Pancake 613 Tyr 614 Romeo 616 NaN 617 Snicku 619 Ruby 621 NaN 622 Yogi 623 Daisy 624 NaN 625 Brody 626 Bailey 628 Mack 630 Nimbus 631 Laika 632 Maximus 633 Clark 635 Dobby 636 Fiona 637 Moreton 638 Dave 639 NaN 640 Tucker 641 Juno 642 Maude 643 Lily 644 Newt 645 Benji 646 Nida 647 NaN 648 Robin 650 Bailey 651 Monster 652 BeBe 653 Remus 658 NaN 659 Levi 660 Mabel 662 Misty 663 Betty 665 Mosby 666 Duke 667 Maggie 668 Bruce 670 Happy 673 Eli 674 Brownie 675 Rizzy 678 Stella 679 Bo 680 Lucy 681 Butter 683 Dexter 684 NaN 685 Leo 687 NaN 688 Frank 689 Tonks 690 Moose 691 Lincoln 693 Rory 695 Logan 696 NaN 697 Dale 698 Rizzo 700 Mattie 703 Lucy 704 Rusty 705 Pinot 706 Dallas 708 Doc 709 Hero 710 Rusty 711 Frankie 712 Stormy 715 Riley 716 Mairi 717 Loomis 718 Finn 719 Godi 721 Dave 722 Earl 723 Cali 724 Deacon 725 Penny 726 Timmy 727 Sampson 729 Chipson 730 NaN 732 NaN 734 Oakley 735 NaN 736 NaN 737 Dash 738 Koda 739 Hercules 740 NaN 743 Bear 744 NaN 747 Scout 748 NaN 750 Reggie 751 NaN 752 Jay 755 Mya 756 Strider 757 Penny 758 NaN 760 Nala 761 Stanley 762 NaN 763 Sophie 765 Wesley 766 NaN 768 Derek 769 Jeffrey 771 Solomon 772 Huck 774 NaN 775 O 776 Sampson 777 NaN 779 Blue 780 Anakin 781 NaN 782 Finley 785 Tucker 786 Finley 787 Sprinkles 788 NaN 789 Winnie 790 Heinrich 791 Loki 792 Shakespeare 793 Chelsea 795 Bungalo 796 Chip 797 Grey 798 NaN 799 Roosevelt 802 Willem 803 NaN 804 Jack 805 Finn 806 Penny 808 Davey 809 Dakota 810 Fizz 812 Dixie 813 Charlie 814 NaN 816 Winston 817 Sebastian 820 Al 821 Jackson 823 Carbon 824 Klein 825 Titan 827 DonDon 828 Kirby 830 Jesse 831 Lou 832 Oakley 834 Chevy 835 Gerald 836 Tito 837 Philbert 838 Louie 839 NaN 840 Rupert 842 Rufus 844 Brudge 845 Shadoe 846 Oscar 848 Juno 849 Angel 850 Brat 851 Tove 853 Louie 854 Gromit 855 Aubie 856 Kota 858 Alfie 859 Clark 861 Belle 862 Leela 863 Glenn 864 Buddy 865 Scout 866 NaN 867 Shelby 869 NaN 870 NaN 871 Sephie 873 Bruce 874 Bonaparte 875 Albert 876 Bo 877 Wishes 878 Rose 879 Theo 880 Atlas 882 Rocco 883 Fido 884 Sadie 887 NaN 888 Kirby 889 Maggie 891 Emma 892 Oakley 894 Luna 896 Toby 897 Spencer 898 Lilli 899 NaN 900 Boston 901 Brandonald 902 NaN 903 Odie 904 Corey 906 NaN 907 Leonard 909 Beckham 910 Cooper 912 NaN 913 NaN 914 NaN 915 Devón 916 Oliver 917 Jax 918 Gert 919 NaN 920 NaN 921 NaN 922 NaN 923 NaN 925 Watson 927 Winnie 928 Keith 929 Milo 930 Dex 931 NaN 932 Charlie 933 NaN 934 NaN 935 Scout 936 Hank 938 Ace 940 Tayzie 942 Grizzie 944 NaN 945 NaN 947 NaN 948 NaN 950 Brody 952 Ruby 953 Tucker 955 Toby 956 NaN 957 Max 958 NaN 959 Gilbert 960 NaN 961 Cooper 962 Milo 963 Meyer 964 Malcolm 965 Arnie 966 Zoe 968 NaN 969 Stewie 970 Calvin 971 Lilah 972 Spanky 973 NaN 974 Jameson 975 Beau 976 Jax 977 Piper 978 Bo 979 Atticus 980 Lucy 981 Finn 982 NaN 983 George 984 Blu 986 Winston 987 Dietrich 989 Divine 990 NaN 991 Tripp 994 Cora 995 NaN 997 Duke 998 NaN 1000 NaN 1001 NaN 1003 Huxley 1007 Bookstore 1008 NaN 1009 NaN 1010 NaN 1013 Atticus 1014 Clark 1015 NaN 1016 NaN 1018 NaN 1019 NaN 1021 Abby 1024 Shiloh 1026 Gustav 1027 Arlen 1028 Gus 1029 Percy 1030 Lenox 1032 Sugar 1034 Oliver 1035 Abby 1036 Indie 1037 Harvey 1038 Blanket 1039 NaN 1041 Geno 1042 NaN 1044 Stark 1045 Harold 1046 Bentley 1047 Beya 1048 Kilo 1050 Kayla 1052 Maxaroni 1053 NaN 1054 Bell 1055 Phil 1056 Doug 1057 Edmund 1058 NaN 1059 Aqua 1060 Tucker 1061 Theodore 1064 Leo 1065 NaN 1066 Chip 1067 Baloo 1068 NaN 1069 NaN 1070 Chase 1072 Nollie 1073 Rorie 1074 Simba 1076 Benji 1077 NaN 1078 Kyle 1079 NaN 1081 Charles 1082 NaN 1083 Bayley 1084 NaN 1085 NaN 1086 Axel 1087 Storkson 1088 Remy 1089 Bella 1090 NaN 1091 NaN 1092 Lily 1093 NaN 1094 Chadrick 1096 Rory 1098 NaN 1099 Maxaroni 1100 NaN 1101 Dakota 1102 NaN 1103 Kellogg 1104 Buckley 1105 Jax 1106 NaN 1107 Livvie 1109 Terry 1110 Moose 1111 NaN 1112 Hermione 1113 NaN 1114 Ralpher 1115 Aldrick 1116 NaN 1117 Kyle 1118 Larry 1119 Solomon 1122 Rooney 1123 Crystal 1124 Ziva 1125 Charles 1126 Ollie 1127 NaN 1128 Stefan 1129 Pupcasso 1130 NaN 1131 Puff 1132 NaN 1133 Flurpson 1134 Coleman 1135 Wallace 1136 Enchilada 1137 Raymond 1139 Rueben 1140 Cilantro 1141 NaN 1142 NaN 1143 NaN 1144 NaN 1145 Karll 1147 Sprout 1148 Blitz 1149 Bloop 1150 NaN 1151 Colby 1152 Lillie 1153 Lola 1155 Fred 1156 NaN 1157 Ashleigh 1158 Kreggory 1159 Sarge 1160 Luther 1161 Sugar 1162 Reginald 1163 Ivar 1164 Jangle 1165 NaN 1166 Schnitzel 1167 Panda 1168 Oliver 1169 Archie 1170 Berkeley 1171 NaN 1172 Ralphé 1173 Derek 1174 Charleson 1175 Neptune 1176 NaN 1177 Clyde 1178 Harnold 1179 Sid 1180 Lucy 1181 Pippa 1182 Sadie 1183 Otis 1184 NaN 1185 Carper 1186 NaN 1187 Bowie 1188 NaN 1189 Alexanderson 1190 Suki 1191 Barclay 1192 NaN 1195 Ebby 1196 Flávio 1197 Smokey 1198 Link 1199 Jennifur 1202 Bluebert 1203 Stephanus 1204 NaN 1205 Bubbles 1209 Toby 1210 Zeus 1211 Bertson 1212 Oscar 1213 Nico 1214 Michelangelope 1215 Siba 1216 Calbert 1218 Curtis 1219 Benedict 1220 NaN 1222 Travis 1223 Thumas 1224 NaN 1225 NaN 1226 Kanu 1228 NaN 1229 Piper 1230 NaN 1231 Lance 1232 Opie 1233 Stubert 1234 NaN 1235 Sunny 1236 Kane 1238 NaN 1239 Steven 1240 Olive 1241 Chester 1243 Winston 1244 Roosevelt 1245 NaN 1246 NaN 1247 Gary 1248 NaN 1249 NaN 1250 Chuckles 1251 Milo 1252 Staniel 1253 Sora 1254 NaN 1256 Beemo 1258 Gunner 1260 NaN 1261 Lacy 1262 Tater 1263 NaN 1264 Watson 1265 NaN 1266 NaN 1267 Olaf 1268 Cecil 1269 Vince 1270 Karma 1271 Billy 1272 Walker 1273 Penny 1274 NaN 1276 Rodney 1277 Klevin 1279 NaN 1280 Malikai 1281 Mister 1282 Coco 1283 Smokey 1284 Bear 1285 Bobble 1287 Oliver 1288 River 1289 Jebberson 1290 NaN 1291 Cooper 1292 Remington 1293 NaN 1294 Farfle 1296 Rufus 1297 Sadie 1298 NaN 1300 Jiminus 1302 Harper 1303 Keurig 1304 NaN 1305 Clarkus 1306 NaN 1307 Finnegus 1308 Cassie 1309 Cupcake 1310 Kathmandu 1311 Tucker 1312 Ellie 1314 Elliot 1315 Katie 1316 Shadow 1317 NaN 1318 Oliver 1319 NaN 1320 Koda 1321 NaN 1322 NaN 1323 Kara 1325 Dexter 1327 Adele 1328 Lucy 1329 Max 1330 NaN 1331 NaN 1332 Zara 1333 Cooper 1334 Ambrose 1335 Jimothy 1336 Bode 1337 Terrenth 1338 Reese 1339 NaN 1341 NaN 1342 Chesterson 1343 NaN 1344 NaN 1346 Lucia 1347 Bisquick 1348 Ralphson 1350 Stanley 1352 NaN 1353 NaN 1354 Bella 1355 Scooter 1356 NaN 1357 NaN 1358 Charlie 1359 Socks 1360 NaN 1363 Chip 1365 Lucy 1366 Rambo 1367 Sansa 1370 NaN 1371 NaN 1372 NaN 1373 Fiji 1374 Rilo 1375 Bilbo 1377 Coopson 1378 Yoda 1379 Millie 1380 NaN 1381 Chet 1383 Crouton 1384 Daniel 1386 Vincent 1387 Kaia 1388 Murphy 1389 Dotsy 1390 NaN 1391 NaN 1392 Eazy 1393 Coops 1394 Thumas 1395 Cooper 1396 Nala 1397 NaN 1398 Fillup 1399 Dave 1400 Archie 1401 NaN 1402 NaN 1403 Miley 1404 Calbert 1405 NaN 1406 Charl 1407 Reagan 1408 NaN 1410 NaN 1411 Oliver 1412 CeCe 1413 NaN 1414 Cuddles 1415 Rusty 1416 NaN 1417 Claude 1418 Jessiga 1419 Maximus 1420 Franklin 1421 Beau 1422 Lily 1423 NaN 1424 Doug 1425 Cassie 1426 Carter 1428 NaN 1429 NaN 1430 Ole 1432 Blipson 1433 NaN 1434 Bentley 1436 Charlie 1437 Oakley 1438 Rosie 1439 NaN 1440 NaN 1441 Misty 1442 Reptar 1444 Trevith 1447 NaN 1448 Berb 1450 NaN 1451 Wyatt 1452 NaN 1453 Calvin 1454 NaN 1455 Bob 1456 Colin 1458 Lorenzo 1459 NaN 1460 Brian 1462 Archie 1463 Phil 1464 NaN 1465 Oliviér 1467 Grady 1468 NaN 1469 Lola 1470 Chester 1472 Kobe 1473 NaN 1475 Freddery 1476 NaN 1477 NaN 1478 Phil 1480 Lincoln 1481 Sadie 1483 NaN 1484 Bodie 1485 Dunkin 1486 NaN 1487 Milo 1488 NaN 1489 Wally 1490 NaN 1491 Tupawc 1492 NaN 1493 NaN 1494 Chester 1495 Amber 1496 Cody 1498 Herschel 1500 Edgar 1501 NaN 1503 Kingsley 1504 Brockly 1506 NaN 1507 Richie 1508 NaN 1509 Leo 1510 Bailey 1511 NaN 1512 Molly 1513 NaN 1514 NaN 1516 NaN 1517 NaN 1518 Buddy 1519 Peaches 1520 Vinscent 1521 Cedrick 1522 Hazel 1524 Lolo 1525 Eriq 1526 Phred 1529 Maxwell 1530 Geoff 1531 NaN 1532 NaN 1533 Covach 1535 NaN 1536 Gizmo 1537 Durg 1538 Fynn 1539 Luca 1540 Ricky 1541 Lucy 1542 NaN 1543 NaN 1544 Carl 1545 NaN 1546 Chipson 1547 Herald 1548 Lucky 1550 NaN 1551 Trip 1552 NaN 1553 Clarence 1554 NaN 1555 Hamrick 1556 Brad 1557 NaN 1558 Pubert 1559 Frönq 1560 NaN 1561 Louis 1562 Derby 1563 Lizzie 1564 NaN 1565 Kilo 1567 Louis 1568 NaN 1569 Trooper 1571 Blakely 1572 Opal 1573 Marq 1574 NaN 1575 Curtis 1576 Kramer 1578 Tyrone 1579 NaN 1580 Gordon 1581 Samson 1582 Baxter 1583 NaN 1584 NaN 1585 Jackson 1587 NaN 1588 NaN 1589 Mona 1590 Olivia 1591 Horace 1593 Crimson 1594 Birf 1595 NaN 1597 Flávio 1599 NaN 1600 NaN 1601 Hammond 1602 Lorelei 1604 Olive 1606 Marty 1607 Brooks 1608 Otis 1609 NaN 1610 NaN 1611 NaN 1612 Rocky 1613 NaN 1614 Petrick 1615 Hubertson 1616 Alfie 1617 Gerbald 1619 Jerry 1620 Oreo 1621 Bruiser 1622 NaN 1623 Perry 1624 NaN 1626 Theodore 1627 NaN 1629 Bobby 1630 NaN 1631 Pippa 1632 Jeph 1633 Obi 1634 NaN 1635 NaN 1636 NaN 1637 Tino 1638 NaN 1639 Kulet 1641 NaN 1642 Lupe 1643 Sadie 1644 Tiger 1645 Jiminy 1646 NaN 1647 NaN 1648 Buddy 1649 Sebastian 1651 Griffin 1652 Banjo 1653 NaN 1654 NaN 1655 Jack 1656 NaN 1657 Brandy 1658 Larry 1659 NaN 1660 NaN 1661 Lulu 1662 Darrel 1664 NaN 1665 Taco 1666 NaN 1667 Joey 1668 NaN 1669 NaN 1670 Patrick 1671 Kreg 1672 Brody 1673 Todo 1674 Jax 1675 Samson 1677 Tess 1678 NaN 1679 Ulysses 1680 NaN 1681 Jimothy 1682 Charlie 1683 Bo 1684 NaN 1685 Toffee 1686 NaN 1687 Apollo 1688 Carly 1690 Asher 1691 Glacier 1692 Chuck 1694 Sarge 1695 Panda 1696 Champ 1697 NaN 1698 Aspen 1699 NaN 1700 Ozzie 1701 Alice 1702 Sadie 1703 Griswold 1704 Cheesy 1705 Ellie 1707 NaN 1708 Moofasa 1709 Brody 1710 Penny 1711 Percy 1712 NaN 1713 Hector 1714 NaN 1715 CeCe 1716 Toby 1717 NaN 1718 NaN 1719 Goliath 1720 Kawhi 1721 Reggie 1722 Ozzy 1723 NaN 1725 Emmie 1726 Sammy 1727 Penelope 1729 NaN 1730 Bruce 1731 Willie 1732 NaN 1733 Rinna 1734 NaN 1735 Hunter 1736 Mike 1738 NaN 1739 William 1740 Dwight 1741 Evy 1742 Hurley 1744 Rubio 1745 NaN 1746 Louis 1748 Chompsky 1749 NaN 1751 NaN 1752 Lola 1753 NaN 1754 Linda 1755 Tug 1756 Mia 1757 Wilson 1758 Dash 1759 Tango 1761 NaN 1762 Grizz 1763 NaN 1764 Crystal 1765 Jerome 1766 NaN 1767 NaN 1768 Bella 1769 Crumpet 1770 NaN 1771 Rosie 1772 NaN 1773 Jessifer 1775 Reese 1777 NaN 1778 NaN 1779 NaN 1780 Ralph 1781 Sadie 1782 NaN 1783 NaN 1784 NaN 1786 Sandy 1787 NaN 1788 NaN 1789 NaN 1790 Axel 1792 NaN 1793 Humphrey 1794 Derek 1795 Tassy 1796 Juckson 1798 Chuq 1799 NaN 1800 Cooper 1801 NaN 1802 Tyrus 1803 Karl 1804 NaN 1805 NaN 1806 NaN 1808 NaN 1809 Ash 1810 NaN 1811 NaN 1812 Penny 1813 NaN 1814 NaN 1816 NaN 1817 Godzilla 1820 Bubbles 1821 Vinnie 1822 NaN 1823 NaN 1824 Griffin 1825 NaN 1826 NaN 1827 Duke 1828 NaN 1829 Winston 1830 Kenneth 1831 Herm 1832 NaN 1833 Bert 1835 Striker 1836 NaN 1837 NaN 1838 NaN 1839 Donny 1840 NaN 1841 NaN 1842 NaN 1843 NaN 1845 Pepper 1846 NaN 1847 NaN 1848 Bernie 1849 Buddah 1850 NaN 1851 Lenny 1852 NaN 1855 Ellie 1856 Sammy 1857 NaN 1858 NaN 1859 Reggie 1860 NaN 1861 NaN 1862 NaN 1863 NaN 1864 Daisy 1865 NaN 1866 NaN 1867 NaN 1868 Arnold 1869 NaN 1870 NaN 1871 NaN 1872 Coops 1873 NaN 1874 Steven 1875 Zuzu 1876 Oliver 1879 Moe 1880 Mollie 1881 Laela 1882 NaN 1883 NaN 1884 Tedders 1885 NaN 1886 NaN 1887 Maggie 1888 NaN 1889 Superpup 1890 NaN 1891 NaN 1892 NaN 1893 NaN 1894 Sophie 1896 NaN 1897 Rufio 1898 Patrick 1899 Jeb 1900 Rodman 1901 NaN 1902 NaN 1903 NaN 1904 NaN 1906 Louis 1907 NaN 1908 Bailey 1909 Ava 1910 Jonah 1911 Lenny 1912 Gary 1913 Chesney 1915 Lennon 1917 Kenny 1918 NaN 1919 Bob 1920 Henry 1921 Gus 1922 Bobbay 1924 Mitch 1925 Earl 1926 Stanley 1927 Lucy 1928 NaN 1929 NaN 1930 Kaiya 1931 Daisy 1932 NaN 1933 Acro 1934 Aiden 1935 NaN 1937 Obie 1938 NaN 1939 NaN 1942 NaN 1943 NaN 1944 Riley 1945 Raymond 1946 Dot 1947 NaN 1948 Pickles 1949 NaN 1950 Larry 1951 George 1952 Shnuggles 1953 Kendall 1954 Albert 1956 Jeffri 1957 Sandy 1958 NaN 1959 NaN 1960 NaN 1961 Steve 1962 Koda 1963 NaN 1964 Bella 1965 Gerald 1966 NaN 1967 Django 1968 Frankie 1969 NaN 1970 Eve 1971 Mac 1972 NaN 1973 Dexter 1974 Fletcher 1975 Kenzie 1976 Pumpkin 1977 Schnozz 1978 NaN 1979 NaN 1980 Chuckles 1981 Chet 1982 Gustaf 1983 Terry 1984 Jimison 1985 Cheryl 1986 NaN 1987 Oscar 1988 Ed 1989 Jerry 1990 Leonidas 1991 NaN 1992 Norman 1993 Caryl 1995 Scott 1996 Taz 1997 NaN 1998 Darby 1999 NaN 2000 Jackie 2002 Jazz 2003 Buddy 2004 Franq 2005 Pippin 2006 NaN 2007 Kreg 2008 NaN 2009 Rolf 2010 NaN 2011 Snickers 2012 Ridley 2013 NaN 2014 Cal 2015 Opal 2016 Bradley 2017 Bubba 2018 NaN 2020 Tuco 2021 Patch 2022 Gizmo 2023 Lola 2024 Mojo 2025 Batdog 2026 Brad 2027 Mia 2028 Dylan 2029 NaN 2031 NaN 2032 Mark 2033 NaN 2035 Oscar 2036 NaN 2039 Marley 2040 NaN 2041 JD 2042 Baxter 2043 Reginald 2044 NaN 2045 Jax 2046 Alejandro 2047 Scruffers 2048 Hammond 2049 Charlie 2050 Pip 2051 Julius 2052 Malcolm 2053 Penelope 2054 NaN 2055 Tanner 2056 NaN 2057 Lou 2058 Lola 2059 Sparky 2060 NaN 2061 Herm 2062 NaN 2063 Anthony 2064 Holly 2065 NaN 2067 NaN 2068 NaN 2069 Clarence 2070 NaN 2071 Phred 2072 Toby 2073 NaN 2074 NaN 2075 Colby 2076 NaN 2077 Jett 2078 Amy 2079 NaN 2080 Remington 2081 NaN 2082 Sage 2083 Maggie 2084 Andy 2085 Mason 2086 NaN 2087 Trigger 2088 Antony 2089 NaN 2090 Creg 2091 NaN 2092 NaN 2093 Traviss 2094 NaN 2095 Vincent 2096 Gin 2097 Jerry 2098 Jeffrie 2099 NaN 2100 Danny 2101 Ester 2102 Pluto 2103 Bloo 2104 Phineas 2105 NaN 2106 Edd 2107 NaN 2108 NaN 2109 NaN 2110 Paull 2111 Koda 2112 NaN 2113 Hank 2114 Sam 2115 Willy 2117 Herb 2118 Damon 2119 NaN 2120 Scooter 2121 Peanut 2122 Nigel 2123 Larry 2124 Daisy 2126 Butters 2127 NaN 2129 Sandra 2130 Wally 2131 NaN 2132 Fabio 2133 Winston 2134 Randall 2135 Liam 2136 Tommy 2137 Ben 2138 NaN 2139 NaN 2140 Raphael 2141 Zoey 2142 NaN 2143 Julio 2144 Andru 2145 NaN 2147 Chester 2148 Clarence 2150 Kloey 2151 Louie 2152 Shawwn 2154 Penny 2155 NaN 2156 Skye 2157 NaN 2158 Linda 2159 Keith 2160 Kollin 2162 Ronduh 2163 Billl 2164 Oliviér 2165 Chip 2166 NaN 2167 Saydee 2168 Dug 2169 Tessa 2170 Sully 2171 Kirk 2172 NaN 2173 Ralf 2174 Clarq 2175 Jaspers 2176 Samsom 2177 NaN 2178 NaN 2179 Tucker 2180 Terrance 2181 NaN 2182 Harrison 2183 Bernie 2184 NaN 2185 Ruby 2186 NaN 2187 Chaz 2188 Jeremy 2190 Jaycob 2192 Herald 2193 Lambeau 2194 Ruffles 2195 Amélie 2196 Bobb 2197 Banditt 2199 Kevon 2200 Winifred 2201 NaN 2202 NaN 2203 Hanz 2205 Churlie 2206 Zeek 2207 Timofy 2208 Maks 2209 Jomathan 2210 Kallie 2213 Marvin 2214 NaN 2215 NaN 2216 Spark 2217 Gòrdón 2219 Jo 2220 NaN 2221 DayZ 2223 NaN 2224 NaN 2225 Rusty 2226 Sophie 2227 NaN 2228 Jareld 2229 Bisquick 2230 Torque 2231 NaN 2232 NaN 2233 Ron 2234 Skittles 2236 NaN 2237 NaN 2238 Alfie 2239 NaN 2240 Jiminy 2241 Otis 2242 NaN 2243 Cleopatricia 2244 Erik 2245 Stu 2246 Tedrick 2247 NaN 2248 Shaggy 2250 NaN 2251 Filup 2252 NaN 2253 NaN 2254 NaN 2256 Calvin 2257 Olive 2258 NaN 2261 NaN 2262 George 2263 Kial 2265 Frank 2266 Naphaniel 2267 NaN 2268 Dook 2269 NaN 2270 Hall 2271 Philippe 2272 NaN 2274 Reese 2275 Cupcake 2276 NaN 2277 NaN 2278 NaN 2279 Biden 2280 Fwed 2281 NaN 2282 Genevieve 2283 Joshwa 2284 NaN 2285 NaN 2286 Timison 2288 NaN 2289 Clarence 2290 Kenneth 2291 Churlie 2292 Bradlay 2293 Pipsy 2294 NaN 2295 Gabe 2296 Clybe 2297 Dave 2299 NaN 2300 Keet 2301 NaN 2302 Klevin 2303 Carll 2305 NaN 2306 NaN 2307 NaN 2308 Jeph 2309 Jockson 2310 NaN 2312 Josep 2313 Lugan 2315 Christoper 2316 NaN 2317 Jimothy 2318 Kreggory 2319 Scout 2320 NaN 2321 NaN 2322 NaN 2323 NaN 2324 NaN 2325 Walter 2328 NaN 2329 NaN 2330 NaN 2331 NaN 2332 NaN 2336 NaN 2337 NaN 2338 NaN 2339 NaN 2340 NaN 2341 NaN 2342 NaN 2343 NaN 2344 NaN 2351 NaN 2355 NaN Name: name, dtype: object
# just in case, check for remaining lowercase names
archive_clean['name'].str.extract('(^[^A-Z].*$)')[0].unique()
array([nan], dtype=object)
# check
# we use Set display options to show all rows and check the names.
# pd.set_option('display.max_rows', None)
# Get the value counts of the 'name' column and display all records
name_counts = archive_clean['name'].value_counts()
print(name_counts)
Charlie 11 Cooper 10 Lucy 10 Oliver 10 Penny 9 Tucker 9 Winston 8 Sadie 8 Toby 7 Lola 7 Daisy 7 Bella 6 Koda 6 Jax 6 Stanley 6 Bo 6 Scout 5 Rusty 5 Chester 5 Bailey 5 Buddy 5 Louis 5 Leo 5 Milo 5 Dave 5 Oscar 5 Clarence 4 Larry 4 Jerry 4 Jack 4 Oakley 4 Sophie 4 Brody 4 Bentley 4 Chip 4 Winnie 4 George 4 Phil 4 Duke 4 Clark 4 Maggie 4 Gary 4 Derek 4 Archie 4 Cassie 4 Reggie 4 Scooter 4 Dexter 4 Alfie 4 Finn 4 Bear 4 Gus 4 Sammy 3 Gizmo 3 Loki 3 Jeffrey 3 Hank 3 Gerald 3 Zeke 3 Louie 3 Beau 3 Mia 3 Ruby 3 Steven 3 Wilson 3 Sunny 3 Wyatt 3 Rosie 3 Zoey 3 Olive 3 Malcolm 3 Lily 3 Riley 3 Moose 3 Kyle 3 Bruce 3 Walter 3 Samson 3 Shadow 3 Boomer 3 Sebastian 3 Nala 3 Earl 3 Otis 3 Wallace 3 Ellie 3 Vincent 3 Jimothy 3 Waffles 3 Max 3 Calvin 3 Reese 3 Olivia 2 Maximus 2 Misty 2 Kenneth 2 Juno 2 Moe 2 Atlas 2 Sandy 2 Tyr 2 Herm 2 Benji 2 Rocky 2 Hunter 2 Gabe 2 Sam 2 Luca 2 Mister 2 Bernie 2 Peaches 2 Doc 2 Lenny 2 Ollie 2 Fiona 2 Marley 2 Jimison 2 Django 2 Sansa 2 Titan 2 Phineas 2 Linda 2 Axel 2 Chet 2 Raymond 2 Coops 2 Crystal 2 CeCe 2 Terry 2 Charles 2 Frank 2 Bob 2 Theodore 2 Oliviér 2 Doug 2 Maxaroni 2 Kilo 2 Colby 2 Kreggory 2 Sarge 2 Reginald 2 Bisquick 2 Panda 2 Pippa 2 Flávio 2 Smokey 2 Cupcake 2 Bubbles 2 Remington 2 Calbert 2 Curtis 2 Thumas 2 Klevin 2 Chuckles 2 Wally 2 Sugar 2 Percy 2 Griffin 2 Lincoln 2 Rory 2 Penelope 2 Frankie 2 Sampson 2 Chipson 2 Dash 2 Solomon 2 Finley 2 Kreg 2 Patrick 2 Roosevelt 2 Dakota 2 Jackson 2 Kirby 2 Abby 2 Lou 2 Rufus 2 Jeph 2 Hammond 2 Albert 2 Baxter 2 Opal 2 Brad 2 Watson 2 Keith 2 Herald 2 Phred 2 Piper 2 Atticus 2 Jiminy 2 Lennon 2 Hobbes 2 Romeo 2 Kevin 2 Yogi 2 Alice 2 Churlie 2 Aspen 2 Harold 2 Jesse 2 Ash 2 Eli 2 Paisley 2 Ava 2 Cody 2 Odie 2 Nelly 2 Indie 2 Benedict 2 Luna 2 Cash 2 Coco 2 Elliot 2 Pickles 2 Belle 2 Neptune 2 Albus 2 Franklin 2 Carl 2 Trooper 2 Ted 2 Lorenzo 2 Vinscent 1 Cedrick 1 Hazel 1 Lolo 1 Eriq 1 Molly 1 Spark 1 Marvin 1 Maxwell 1 Geoff 1 Kallie 1 Covach 1 Winifred 1 Gòrdón 1 Richie 1 Tupawc 1 Banditt 1 Freddery 1 Torque 1 Tiger 1 Bodie 1 Dunkin 1 Jareld 1 Amber 1 Durg 1 DayZ 1 Kevon 1 Herschel 1 Jo 1 Edgar 1 Kingsley 1 Brockly 1 Lupe 1 Gerbald 1 Fynn 1 Kulet 1 Bobby 1 Tyrone 1 Perry 1 Gordon 1 Bruiser 1 Mona 1 Horace 1 Crimson 1 Hanz 1 Birf 1 Oreo 1 Lorelei 1 Marty 1 Brooks 1 Petrick 1 Kramer 1 Marq 1 Blakely 1 Hamrick 1 Hubertson 1 Tino 1 Jomathan 1 Lucky 1 Trip 1 Maks 1 Obi 1 Lizzie 1 Ron 1 Timofy 1 Zeek 1 Pubert 1 Frönq 1 Derby 1 Ricky 1 Jett 1 Kobe 1 Adele 1 Finnegus 1 Pipsy 1 Bradlay 1 Timison 1 Kathmandu 1 Joshwa 1 Katie 1 Kara 1 Zara 1 Grady 1 Genevieve 1 Ambrose 1 Bode 1 Terrenth 1 Fwed 1 Chesterson 1 Biden 1 Lucia 1 Clarkus 1 Keurig 1 Clybe 1 Harper 1 Cecil 1 Vince 1 Karma 1 Billy 1 Lugan 1 Walker 1 Rodney 1 Josep 1 Malikai 1 Bobble 1 River 1 Jockson 1 Carll 1 Jebberson 1 Keet 1 Farfle 1 Jiminus 1 Philippe 1 Ralphson 1 Hall 1 Shaggy 1 Reagan 1 Tedrick 1 Cuddles 1 Claude 1 Jessiga 1 Carter 1 Ole 1 Blipson 1 Stu 1 Reptar 1 Trevith 1 Berb 1 Erik 1 Bobb 1 Brian 1 Cleopatricia 1 Skittles 1 Charl 1 Miley 1 Socks 1 Filup 1 Dook 1 Rambo 1 Fiji 1 Rilo 1 Bilbo 1 Coopson 1 Yoda 1 Millie 1 Crouton 1 Naphaniel 1 Daniel 1 Kaia 1 Murphy 1 Dotsy 1 Eazy 1 Kial 1 Fillup 1 Colin 1 Taco 1 Banjo 1 Fletcher 1 Dot 1 Shnuggles 1 Kendall 1 Jeffri 1 Steve 1 Eve 1 Willy 1 Mac 1 Kenzie 1 Herb 1 Paull 1 Pumpkin 1 Schnozz 1 Gustaf 1 Cheryl 1 Ed 1 Leonidas 1 Norman 1 Obie 1 Aiden 1 Tedders 1 Jonah 1 Superpup 1 Fabio 1 Rufio 1 Tater 1 Jeb 1 Sandra 1 Rodman 1 Butters 1 Nigel 1 Acro 1 Chesney 1 Peanut 1 Kenny 1 Henry 1 Bobbay 1 Damon 1 Mitch 1 Kaiya 1 Caryl 1 Edd 1 Scott 1 Pip 1 Mojo 1 Batdog 1 Dylan 1 Mark 1 Antony 1 JD 1 Alejandro 1 Scruffers 1 Julius 1 Taz 1 Tanner 1 Sparky 1 Anthony 1 Trigger 1 Holly 1 Mason 1 Andy 1 Sage 1 Patch 1 Creg 1 Tuco 1 Bubba 1 Darby 1 Jackie 1 Bloo 1 Pluto 1 Jazz 1 Franq 1 Pippin 1 Ester 1 Rolf 1 Danny 1 Snickers 1 Ridley 1 Cal 1 Jeffrie 1 Gin 1 Bradley 1 Traviss 1 Randall 1 Laela 1 Brandy 1 Emmie 1 Harrison 1 Terrance 1 Cheesy 1 Moofasa 1 Hector 1 Goliath 1 Kawhi 1 Ozzy 1 Samsom 1 Jeremy 1 Willie 1 Rinna 1 Mike 1 William 1 Dwight 1 Evy 1 Jaspers 1 Hurley 1 Chaz 1 Griswold 1 Liam 1 Ulysses 1 Lulu 1 Darrel 1 Amy 1 Joey 1 Amélie 1 Ruffles 1 Todo 1 Tess 1 Lambeau 1 Ozzie 1 Toffee 1 Apollo 1 Carly 1 Asher 1 Jaycob 1 Glacier 1 Chuck 1 Champ 1 Clarq 1 Rubio 1 Chompsky 1 Donny 1 Kollin 1 Vinnie 1 Skye 1 Shawwn 1 Kloey 1 Andru 1 Bert 1 Striker 1 Julio 1 Ralf 1 Pepper 1 Raphael 1 Ben 1 Buddah 1 Tommy 1 Arnold 1 Zuzu 1 Mollie 1 Godzilla 1 Karl 1 Ronduh 1 Tyrus 1 Tug 1 Tango 1 Kirk 1 Sully 1 Grizz 1 Jerome 1 Tessa 1 Crumpet 1 Jessifer 1 Ralph 1 Dug 1 Humphrey 1 Tassy 1 Juckson 1 Saydee 1 Chuq 1 Billl 1 Olaf 1 Bell 1 Lacy 1 Mo 1 Pablo 1 Crawford 1 Duchess 1 Harlso 1 Sundance 1 Flash 1 Howie 1 Jazzy 1 Anna 1 Wafer 1 Tom 1 Florence 1 Autumn 1 Dido 1 Eugene 1 Ken 1 Strudel 1 Tebow 1 Chloe 1 Sweet 1 Ike 1 Orion 1 Pilot 1 Smiley 1 Miguel 1 Emanuel 1 Kuyu 1 Dutch 1 Pete 1 Lilly 1 Astrid 1 Mutt 1 Doobert 1 Beebop 1 Alexander 1 Sailer 1 Brutus 1 Kona 1 Boots 1 Ralphie 1 Cupid 1 Pawnd 1 Timber 1 Binky 1 Dudley 1 Comet 1 Sonny 1 Severus 1 Ronnie 1 Bones 1 Mauve 1 Chef 1 Sobe 1 Longfellow 1 Iroh 1 Pancake 1 Snicku 1 Mack 1 Nimbus 1 Laika 1 Dobby 1 Moreton 1 Maude 1 Newt 1 Nida 1 Diogi 1 Shooter 1 Major 1 Bauer 1 Akumi 1 Alf 1 Oshie 1 Chubbs 1 Sky 1 Eleanor 1 Layla 1 Baron 1 Swagger 1 Stephan 1 Brandi 1 Mary 1 Halo 1 Augie 1 Craig 1 Pavlov 1 Kyro 1 Ito 1 Eevee 1 Willow 1 Gunner 1 Ginger 1 Goose 1 Nugget 1 Jed 1 Sierra 1 Monkey 1 Harry 1 Kody 1 Lassie 1 Rover 1 Napolean 1 Rumble 1 Clifford 1 Dewey 1 Shikha 1 Lili 1 Jamesy 1 Meatball 1 Quinn 1 Zooey 1 Venti 1 Dante 1 Rhino 1 Aja 1 Darla 1 Bruno 1 Stuart 1 Jim 1 Ralphus 1 Canela 1 Maya 1 Mingus 1 Roscoe 1 Jimbo 1 Maisey 1 Noah 1 Grizzwald 1 Alfy 1 Koko 1 Rey 1 Duddles 1 Snoopy 1 Emmy 1 Jersey 1 Burt 1 Jordy 1 Milky 1 Vixen 1 Jarvis 1 Mimosa 1 Brady 1 Margo 1 Tycho 1 Dawn 1 Maddie 1 Monty 1 Sojourner 1 Arlo 1 Mookie 1 Meera 1 Tobi 1 Sunshine 1 Lipton 1 Bronte 1 Poppy 1 Gidget 1 Barney 1 Tuck 1 Furzey 1 Jarod 1 Thor 1 Callie 1 Cermet 1 Marlee 1 Arya 1 Einstein 1 Rumpole 1 Benny 1 Wiggles 1 Cannon 1 General 1 Sailor 1 Iggy 1 Snoop 1 Noosh 1 Odin 1 Georgie 1 Rontu 1 Robin 1 Monster 1 BeBe 1 Baloo 1 Nollie 1 Rorie 1 Simba 1 Bayley 1 Storkson 1 Remy 1 Chadrick 1 Kellogg 1 Buckley 1 Livvie 1 Hermione 1 Ralpher 1 Aldrick 1 Rooney 1 Ziva 1 Stefan 1 Pupcasso 1 Puff 1 Flurpson 1 Chase 1 Aqua 1 Remus 1 Edmund 1 Jameson 1 Blu 1 Dietrich 1 Divine 1 Tripp 1 Cora 1 Huxley 1 Bookstore 1 Shiloh 1 Gustav 1 Arlen 1 Lenox 1 Harvey 1 Blanket 1 Geno 1 Stark 1 Beya 1 Kayla 1 Tilly 1 Coleman 1 Enchilada 1 Rueben 1 Cilantro 1 Ebby 1 Link 1 Jennifur 1 Bluebert 1 Stephanus 1 Zeus 1 Bertson 1 Nico 1 Michelangelope 1 Siba 1 Travis 1 Kanu 1 Lance 1 Opie 1 Stubert 1 Kane 1 Staniel 1 Sora 1 Beemo 1 Barclay 1 Suki 1 Alexanderson 1 Ivar 1 Karll 1 Sprout 1 Blitz 1 Bloop 1 Lillie 1 Fred 1 Ashleigh 1 Luther 1 Jangle 1 Bowie 1 Schnitzel 1 Berkeley 1 Ralphé 1 Charleson 1 Clyde 1 Harnold 1 Sid 1 Carper 1 Spanky 1 Lilah 1 Stewie 1 Dixie 1 Deacon 1 Timmy 1 Hercules 1 Jay 1 Mya 1 Strider 1 Wesley 1 Huck 1 O 1 Blue 1 Anakin 1 Sprinkles 1 Heinrich 1 Shakespeare 1 Chelsea 1 Bungalo 1 Grey 1 Willem 1 Davey 1 Cali 1 Godi 1 Loomis 1 Butter 1 Levi 1 Mabel 1 Betty 1 Mosby 1 Happy 1 Brownie 1 Rizzy 1 Stella 1 Tonks 1 Mairi 1 Logan 1 Dale 1 Rizzo 1 Mattie 1 Pinot 1 Dallas 1 Hero 1 Stormy 1 Fizz 1 Al 1 Zoe 1 Carbon 1 Rocco 1 Fido 1 Emma 1 Spencer 1 Lilli 1 Boston 1 Brandonald 1 Corey 1 Leonard 1 Beckham 1 Devón 1 Gert 1 Dex 1 Ace 1 Tayzie 1 Grizzie 1 Gilbert 1 Meyer 1 Arnie 1 Theo 1 Rose 1 Wishes 1 Angel 1 Klein 1 DonDon 1 Chevy 1 Tito 1 Philbert 1 Rupert 1 Brudge 1 Shadoe 1 Brat 1 Bonaparte 1 Tove 1 Gromit 1 Aubie 1 Kota 1 Leela 1 Glenn 1 Shelby 1 Sephie 1 Christoper 1 Name: name, dtype: int64
Some issuses are still there. Like I am not certain if naming the dog Churlie or Clybe is intentional or it is a misspelling; however, for this project, we will keep this column as it is. These are still names, so it should not affect the results of analysis.
Now we will work on archive columns: doggo, foofer, pupper, puppo. We aim for one column instead of four.
# Function to concatenate dog types
def concatenate_types(row):
types = []
for type in ['doggo', 'floofer', 'pupper', 'puppo']:
if row[type] != 'None': # Assuming the typess are stored as strings 'None' if no type
types.append(type)
return ', '.join(types) if types else None
# Apply the function to each row
archive_clean['dog_types'] = archive_clean.apply(concatenate_types, axis=1)
# Drop the original stage columns
archive_clean.drop(columns=['doggo', 'floofer', 'pupper', 'puppo'], inplace=True)
# check
print(archive_clean.head())
tweet_id in_reply_to_status_id in_reply_to_user_id \
0 892420643555336193 NaN NaN
1 892177421306343426 NaN NaN
2 891815181378084864 NaN NaN
3 891689557279858688 NaN NaN
4 891327558926688256 NaN NaN
timestamp \
0 2017-08-01 16:23:56 +0000
1 2017-08-01 00:17:27 +0000
2 2017-07-31 00:18:03 +0000
3 2017-07-30 15:58:51 +0000
4 2017-07-29 16:00:24 +0000
source \
0 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
2 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
3 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
4 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text \
0 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU
1 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV
2 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB
3 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ
4 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f
expanded_urls \
0 https://twitter.com/dog_rates/status/892420643555336193/photo/1
1 https://twitter.com/dog_rates/status/892177421306343426/photo/1
2 https://twitter.com/dog_rates/status/891815181378084864/photo/1
3 https://twitter.com/dog_rates/status/891689557279858688/photo/1
4 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1
rating_numerator rating_denominator name dog_types
0 13 10 Phineas None
1 13 10 Tilly None
2 12 10 Archie None
3 13 10 Darla None
4 12 10 Franklin None
We will check for inconsistencies such as:
Duplicate dog type values within the same dog_types entry.
Mixed case (upper and lower case) stage values.
Multiple identical stages listed.
In order to do so we will: Create the dog_types column as previously described.
Define a function to check for inconsistencies in the dog_types column.
Apply this function to identify any rows with inconsistencies.
# check for inconsistencies in dog_typess column
def check_inconsistencies(row):
if row['dog_types'] is None:
return False
types = row['dog_types'].split(', ')
unique_types = set(types)
if len(types) != len(unique_types):
return True # Duplicate types found
return False
# Apply the inconsistency check function
archive_clean['inconsistencies'] = archive_clean.apply(check_inconsistencies, axis=1)
# Filter rows with inconsistencies
inconsistent_rows = archive_clean[archive_clean['inconsistencies']]
# Display the rows with inconsistencies
print(inconsistent_rows)
# Display the cleaned DataFrame
print(archive_clean.head())
Empty DataFrame
Columns: [tweet_id, in_reply_to_status_id, in_reply_to_user_id, timestamp, source, text, expanded_urls, rating_numerator, rating_denominator, name, dog_types, inconsistencies]
Index: []
tweet_id in_reply_to_status_id in_reply_to_user_id \
0 892420643555336193 NaN NaN
1 892177421306343426 NaN NaN
2 891815181378084864 NaN NaN
3 891689557279858688 NaN NaN
4 891327558926688256 NaN NaN
timestamp \
0 2017-08-01 16:23:56 +0000
1 2017-08-01 00:17:27 +0000
2 2017-07-31 00:18:03 +0000
3 2017-07-30 15:58:51 +0000
4 2017-07-29 16:00:24 +0000
source \
0 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
2 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
3 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
4 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text \
0 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU
1 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV
2 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB
3 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ
4 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f
expanded_urls \
0 https://twitter.com/dog_rates/status/892420643555336193/photo/1
1 https://twitter.com/dog_rates/status/892177421306343426/photo/1
2 https://twitter.com/dog_rates/status/891815181378084864/photo/1
3 https://twitter.com/dog_rates/status/891689557279858688/photo/1
4 https://twitter.com/dog_rates/status/891327558926688256/photo/1,https://twitter.com/dog_rates/status/891327558926688256/photo/1
rating_numerator rating_denominator name dog_types inconsistencies
0 13 10 Phineas None False
1 13 10 Tilly None False
2 12 10 Archie None False
3 13 10 Darla None False
4 12 10 Franklin None False
#count False and True values in 'inconsistencies' column
archive_clean['inconsistencies'].value_counts()
False 1896 Name: inconsistencies, dtype: int64
# Drop the 'inconsistencies' column as it's no longer needed
archive_clean.drop(columns=['inconsistencies'], inplace=True)
# Just to be sure the new column is clean
# display the unique values and their counts in dog_types column
unique_dog_types = archive_clean['dog_types'].value_counts()
print("\nUnique values and their counts in 'dog_types' column:")
print(unique_dog_types)
Unique values and their counts in 'dog_types' column: pupper 194 doggo 61 puppo 22 doggo, pupper 8 floofer 7 doggo, puppo 1 doggo, floofer 1 Name: dog_types, dtype: int64
We have two values per row for 9 rows. For clarity, we will replace records with double values ('doggo, pupper', 'doggo, puppo', 'doggo, floofer') with 'multiple'.
# Change records with double values in the dog_type column to 'multiple'
archive_clean['dog_types'] = archive_clean['dog_types'].replace({
'doggo, pupper': 'multiple',
'doggo, puppo': 'multiple',
'doggo, floofer': 'multiple'
})
# check
archive_clean['dog_types'].value_counts()
pupper 194 doggo 61 puppo 22 multiple 10 floofer 7 Name: dog_types, dtype: int64
#check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1896 entries, 0 to 2355 Data columns (total 11 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1896 non-null int64 1 in_reply_to_status_id 23 non-null float64 2 in_reply_to_user_id 23 non-null float64 3 timestamp 1896 non-null object 4 source 1896 non-null object 5 text 1896 non-null object 6 expanded_urls 1896 non-null object 7 rating_numerator 1896 non-null int64 8 rating_denominator 1896 non-null int64 9 name 1350 non-null object 10 dog_types 294 non-null object dtypes: float64(2), int64(3), object(6) memory usage: 177.8+ KB
We will correct the data type of Timestamp column to the datetime
# Convert the 'timestamp' column to datetime
archive_clean['timestamp'] = pd.to_datetime(archive_clean['timestamp'])
#check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1896 entries, 0 to 2355 Data columns (total 11 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1896 non-null int64 1 in_reply_to_status_id 23 non-null float64 2 in_reply_to_user_id 23 non-null float64 3 timestamp 1896 non-null datetime64[ns, UTC] 4 source 1896 non-null object 5 text 1896 non-null object 6 expanded_urls 1896 non-null object 7 rating_numerator 1896 non-null int64 8 rating_denominator 1896 non-null int64 9 name 1350 non-null object 10 dog_types 294 non-null object dtypes: datetime64[ns, UTC](1), float64(2), int64(3), object(5) memory usage: 177.8+ KB
I remember that, as advised by Udacity,the fact that the rating numerators are greater than the denominators does not need to be cleaned and that this unique rating system is a big part of the popularity of WeRateDogs. However, of pure curiosity, I would like to check how many values in the rating_numerator and rating_denominator columns have atypical format of numerator/denominator, in other words, which aren't within a reasonable range (e.g., numerator values typically range from 0 to 100 and denominator values are typically 10)
#check for atypical(invalid)
atypical_ratings = archive_clean[
(~archive_clean['rating_numerator'].between(0, 100)) |
(archive_clean['rating_denominator'] != 10)
]
# Display atypical ratings
print("\nRows with atypical rating values:")
print(atypical_ratings)
Rows with atypical rating values:
tweet_id in_reply_to_status_id in_reply_to_user_id \
433 820690176645140481 NaN NaN
516 810984652412424192 NaN NaN
902 758467244762497024 NaN NaN
979 749981277374128128 NaN NaN
1068 740373189193256964 NaN NaN
1165 722974582966214656 NaN NaN
1202 716439118184652801 NaN NaN
1228 713900603437621249 NaN NaN
1254 710658690886586372 NaN NaN
1274 709198395643068416 NaN NaN
1433 697463031882764288 NaN NaN
1634 684225744407494656 6.842229e+17 4.196984e+09
1635 684222868335505415 NaN NaN
1662 682962037429899265 NaN NaN
1779 677716515794329600 NaN NaN
1843 675853064436391936 NaN NaN
2074 670842764863651840 NaN NaN
timestamp \
433 2017-01-15 17:52:40+00:00
516 2016-12-19 23:06:23+00:00
902 2016-07-28 01:00:57+00:00
979 2016-07-04 15:00:45+00:00
1068 2016-06-08 02:41:38+00:00
1165 2016-04-21 02:25:47+00:00
1202 2016-04-03 01:36:11+00:00
1228 2016-03-27 01:29:02+00:00
1254 2016-03-18 02:46:49+00:00
1274 2016-03-14 02:04:08+00:00
1433 2016-02-10 16:51:59+00:00
1634 2016-01-05 04:11:44+00:00
1635 2016-01-05 04:00:18+00:00
1662 2016-01-01 16:30:13+00:00
1779 2015-12-18 05:06:23+00:00
1843 2015-12-13 01:41:41+00:00
2074 2015-11-29 05:52:33+00:00
source \
433 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
516 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
902 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
979 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
1068 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1165 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1202 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1228 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1254 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1274 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1433 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1634 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1635 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1662 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1779 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
1843 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
2074 <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
text \
433 The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd
516 Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx
902 Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE
979 This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh
1068 After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ
1165 Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a
1202 This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq
1228 Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1
1254 Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12
1274 From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK
1433 Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ
1634 Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3
1635 Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55
1662 This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5
1779 IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq
1843 Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw
2074 After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY
expanded_urls \
433 https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1,https://twitter.com/dog_rates/status/820690176645140481/photo/1
516 https://www.gofundme.com/sams-smile,https://twitter.com/dog_rates/status/810984652412424192/photo/1
902 https://twitter.com/dog_rates/status/758467244762497024/video/1
979 https://twitter.com/dog_rates/status/749981277374128128/photo/1
1068 https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1,https://twitter.com/dog_rates/status/740373189193256964/photo/1
1165 https://twitter.com/dog_rates/status/722974582966214656/photo/1
1202 https://twitter.com/dog_rates/status/716439118184652801/photo/1
1228 https://twitter.com/dog_rates/status/713900603437621249/photo/1
1254 https://twitter.com/dog_rates/status/710658690886586372/photo/1
1274 https://twitter.com/dog_rates/status/709198395643068416/photo/1
1433 https://twitter.com/dog_rates/status/697463031882764288/photo/1
1634 https://twitter.com/dog_rates/status/684225744407494656/photo/1,https://twitter.com/dog_rates/status/684225744407494656/photo/1
1635 https://twitter.com/dog_rates/status/684222868335505415/photo/1
1662 https://twitter.com/dog_rates/status/682962037429899265/photo/1
1779 https://twitter.com/dog_rates/status/677716515794329600/photo/1
1843 https://twitter.com/dog_rates/status/675853064436391936/photo/1,https://twitter.com/dog_rates/status/675853064436391936/photo/1
2074 https://twitter.com/dog_rates/status/670842764863651840/photo/1
rating_numerator rating_denominator name dog_types
433 84 70 NaN None
516 24 7 Sam None
902 165 150 NaN None
979 1776 10 Atticus None
1068 9 11 NaN None
1165 4 20 NaN None
1202 50 50 Bluebert None
1228 99 90 NaN None
1254 80 80 NaN None
1274 45 50 NaN None
1433 44 40 NaN None
1634 143 130 NaN None
1635 121 110 NaN None
1662 7 11 Darrel None
1779 144 120 NaN None
1843 88 80 NaN None
2074 420 10 NaN None
# Calculate the percentage of atypical rows
total_rows = len(archive_clean)
atypical_rows = len(atypical_ratings)
percentage_atypical = (atypical_rows / total_rows) * 100
#check
print(f"\nTotal rows in the DataFrame: {total_rows}")
print(f"Atypical rows: {atypical_rows}")
print(f"Percentage of atypical rows: {percentage_atypical:.2f}%")
Total rows in the DataFrame: 1896 Atypical rows: 17 Percentage of atypical rows: 0.90%
The number of rows with atypical (or, mathematically speaking invalid) nominator/denominator is very low. it makes less than 1% of the whole dataframe.
I will drop columns in_reply_to_status_id, in_reply_to_user_id, text, expanded_urls as not useful for the use of this project
#remove columns: in_reply_to_status_id, in_reply_to_user_id, text, expanded_urls
archive_clean.drop(['in_reply_to_status_id', 'in_reply_to_user_id', 'text', 'expanded_urls'], axis=1, inplace=True)
#check
archive_clean.head()
| tweet_id | timestamp | source | rating_numerator | rating_denominator | name | dog_types | |
|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | None |
| 1 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | None |
| 2 | 891815181378084864 | 2017-07-31 00:18:03+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12 | 10 | Archie | None |
| 3 | 891689557279858688 | 2017-07-30 15:58:51+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Darla | None |
| 4 | 891327558926688256 | 2017-07-29 16:00:24+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12 | 10 | Franklin | None |
We will check if there are different sources than iPhone. If yes, we will keep this column for the analysis. if not, we will drop it.
#check if there are different sources than iPhone
archive_clean['source'].str.contains(r'iPhone</a>', case=False, na=False, regex=True).value_counts()
True 1861 False 35 Name: source, dtype: int64
#Check rows with source other than iPhone
false_rows = archive_clean[~archive_clean['source'].str.contains(r'iPhone</a>', case=False, na=False, regex=True)]
print(false_rows)
tweet_id timestamp \
209 852226086759018497 2017-04-12 18:25:07+00:00
270 841314665196081154 2017-03-13 15:47:01+00:00
352 831315979191906304 2017-02-14 01:35:49+00:00
798 772877495989305348 2016-09-05 19:22:09+00:00
828 768970937022709760 2016-08-26 00:38:52+00:00
882 760290219849637889 2016-08-02 01:44:48+00:00
972 750086836815486976 2016-07-04 22:00:12+00:00
974 750056684286914561 2016-07-04 20:00:23+00:00
975 750041628174217216 2016-07-04 19:00:33+00:00
976 750026558547456000 2016-07-04 18:00:41+00:00
977 750011400160841729 2016-07-04 17:00:26+00:00
978 749996283729883136 2016-07-04 16:00:22+00:00
979 749981277374128128 2016-07-04 15:00:45+00:00
990 748705597323898880 2016-07-01 02:31:39+00:00
1047 743510151680958465 2016-06-16 18:26:48+00:00
1723 680100725817409536 2015-12-24 19:00:23+00:00
1725 680070545539371008 2015-12-24 17:00:27+00:00
1726 680055455951884288 2015-12-24 16:00:30+00:00
1865 675354435921575936 2015-12-11 16:40:19+00:00
2256 667766675769573376 2015-11-20 18:09:16+00:00
2257 667728196545200128 2015-11-20 15:36:22+00:00
2258 667724302356258817 2015-11-20 15:20:54+00:00
2261 667549055577362432 2015-11-20 03:44:31+00:00
2262 667546741521195010 2015-11-20 03:35:20+00:00
2263 667544320556335104 2015-11-20 03:25:43+00:00
2265 667534815156183040 2015-11-20 02:47:56+00:00
2266 667530908589760512 2015-11-20 02:32:25+00:00
2267 667524857454854144 2015-11-20 02:08:22+00:00
2268 667517642048163840 2015-11-20 01:39:42+00:00
2269 667509364010450944 2015-11-20 01:06:48+00:00
2270 667502640335572993 2015-11-20 00:40:05+00:00
2271 667495797102141441 2015-11-20 00:12:54+00:00
2272 667491009379606528 2015-11-19 23:53:52+00:00
2274 667455448082227200 2015-11-19 21:32:34+00:00
2275 667453023279554560 2015-11-19 21:22:56+00:00
source \
209 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
270 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
352 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
798 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
828 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
882 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
972 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
974 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
975 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
976 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
977 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
978 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
979 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
990 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
1047 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
1723 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
1725 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
1726 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a>
1865 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2256 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2257 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2258 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2261 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2262 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2263 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2265 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2266 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2267 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2268 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2269 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2270 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2271 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2272 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2274 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
2275 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a>
rating_numerator rating_denominator name dog_types
209 14 10 General None
270 13 10 Max None
352 13 10 NaN pupper
798 11 10 NaN None
828 12 10 Kirby None
882 13 10 Rocco None
972 12 10 Spanky None
974 11 10 Jameson None
975 13 10 Beau None
976 10 10 Jax None
977 11 10 Piper doggo
978 12 10 Bo None
979 1776 10 Atticus None
990 13 10 NaN None
1047 13 10 Beya None
1723 11 10 NaN pupper
1725 9 10 Emmie None
1726 10 10 Sammy None
1865 13 10 NaN None
2256 9 10 Calvin None
2257 11 10 Olive None
2258 7 10 NaN None
2261 1 10 NaN None
2262 9 10 George None
2263 10 10 Kial None
2265 8 10 Frank None
2266 10 10 Naphaniel None
2267 12 10 NaN None
2268 8 10 Dook None
2269 12 10 NaN None
2270 11 10 Hall None
2271 9 10 Philippe None
2272 7 10 NaN None
2274 7 10 Reese None
2275 11 10 Cupcake None
There are clients who used web or tweet deck. It might be useful for further analysis, so we will keep it.
We will also change rename the column dog_types to dog_type as more adequate
#rename the column
archive_clean.rename(columns = {'dog_types':'dog_type'}, inplace = True)
#check
archive_clean.head()
| tweet_id | timestamp | source | rating_numerator | rating_denominator | name | dog_type | |
|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | None |
| 1 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | None |
| 2 | 891815181378084864 | 2017-07-31 00:18:03+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12 | 10 | Archie | None |
| 3 | 891689557279858688 | 2017-07-30 15:58:51+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Darla | None |
| 4 | 891327558926688256 | 2017-07-29 16:00:24+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 12 | 10 | Franklin | None |
We will change dog_type column datatype to category. It might be useful for model building and plotting in the analysis, and leads to faster operations particularly with functions like group by (https://stackoverflow.com/questions/30601830/when-to-use-category-rather-than-object) (https://pandas.pydata.org/docs/user_guide/categorical.html)
archive_clean.dog_type = archive_clean.dog_type.astype('category')
#check
#archive_clean.info()
#final check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1896 entries, 0 to 2355 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1896 non-null int64 1 timestamp 1896 non-null datetime64[ns, UTC] 2 source 1896 non-null object 3 rating_numerator 1896 non-null int64 4 rating_denominator 1896 non-null int64 5 name 1350 non-null object 6 dog_type 294 non-null category dtypes: category(1), datetime64[ns, UTC](1), int64(3), object(2) memory usage: 105.7+ KB
#check
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1896 entries, 0 to 2355 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1896 non-null int64 1 timestamp 1896 non-null datetime64[ns, UTC] 2 source 1896 non-null object 3 rating_numerator 1896 non-null int64 4 rating_denominator 1896 non-null int64 5 name 1350 non-null object 6 dog_type 294 non-null category dtypes: category(1), datetime64[ns, UTC](1), int64(3), object(2) memory usage: 105.7+ KB
Dataframe archive_clean is ready
Now, we will continue with tiding the prediction_clean dataframe. The upper'lower cases in prediction column should be solved
# use info() and head() to remind what still needs to be corrected in predictions_clean
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
predictions_clean.head()
| tweet_id | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 1 | Welsh_springer_spaniel | 0.465074 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 1 | redbone | 0.506826 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 1 | German_shepherd | 0.596461 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 1 | Rhodesian_ridgeback | 0.408143 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 1 | miniature_pinscher | 0.560311 | True |
We will change all upper cases to lower cases in prediction column
#change all the upper cases to lower cases
predictions_clean['prediction'] = predictions_clean['prediction'].str.lower()
#check
predictions_clean.head()
| tweet_id | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 1 | welsh_springer_spaniel | 0.465074 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 1 | redbone | 0.506826 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 1 | german_shepherd | 0.596461 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 1 | rhodesian_ridgeback | 0.408143 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 1 | miniature_pinscher | 0.560311 | True |
We will round decimal places to two in confidence column for more clarity
#round the prediction column values to 2 decimal places
predictions_clean['confidence'] = predictions_clean['confidence'].round(2)
#check
predictions_clean.head()
| tweet_id | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 1 | welsh_springer_spaniel | 0.47 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 1 | redbone | 0.51 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 1 | german_shepherd | 0.60 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 1 | rhodesian_ridgeback | 0.41 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 1 | miniature_pinscher | 0.56 | True |
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null object 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), float64(1), int32(1), int64(2), object(2) memory usage: 309.6+ KB
Prediction column should have categorical datatype
# for the column 'prediction', change the datatype to catogory
predictions_clean.prediction=predictions_clean.prediction.astype('category')
#check
predictions_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5982 entries, 0 to 5981 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5982 non-null int64 1 jpg_url 5982 non-null object 2 img_num 5982 non-null int64 3 prediction_num 5982 non-null int32 4 prediction 5982 non-null category 5 confidence 5982 non-null float64 6 dog_status 5982 non-null bool dtypes: bool(1), category(1), float64(1), int32(1), int64(2), object(1) memory usage: 295.6+ KB
predictions_clean dataframe is ready
3.tweet_data_clean
We will use info(), head() and describe() for the summary and data distribution of tweet_data_clean
#use info() to see the summary of tweet_data_clean
tweet_data_clean.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2354 entries, 0 to 2353 Data columns (total 5 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2354 non-null int64 1 favorite_count 2354 non-null int64 2 retweet_count 2354 non-null int64 3 retweet_status 2354 non-null object 4 url 2354 non-null object dtypes: int64(3), object(2) memory usage: 92.1+ KB
tweet_data_clean.head(10)
| tweet_id | favorite_count | retweet_count | retweet_status | url | |
|---|---|---|---|---|---|
| 0 | 892420643555336193 | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU |
| 1 | 892177421306343426 | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV |
| 2 | 891815181378084864 | 25461 | 4328 | Original tweet | https://t.co/wUnZnhtVJB |
| 3 | 891689557279858688 | 42908 | 8964 | Original tweet | https://t.co/tD36da7qLQ |
| 4 | 891327558926688256 | 41048 | 9774 | Original tweet | https://t.co/AtUZn91f7f |
| 5 | 891087950875897856 | 20562 | 3261 | Original tweet | https://t.co/kQ04fDDRmh |
| 6 | 890971913173991426 | 12041 | 2158 | Original tweet | https://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl |
| 7 | 890729181411237888 | 56848 | 16716 | Original tweet | https://t.co/v0nONBcwxq |
| 8 | 890609185150312448 | 28226 | 4429 | Original tweet | https://t.co/9TwLuAGH0b |
| 9 | 890240255349198849 | 32467 | 7711 | Original tweet | https://t.co/t1bfwz5S2A |
tweet_data_clean.describe()
| tweet_id | favorite_count | retweet_count | |
|---|---|---|---|
| count | 2.354000e+03 | 2354.000000 | 2354.000000 |
| mean | 7.426978e+17 | 8080.968564 | 3164.797366 |
| std | 6.852812e+16 | 11814.771334 | 5284.770364 |
| min | 6.660209e+17 | 0.000000 | 0.000000 |
| 25% | 6.783975e+17 | 1415.000000 | 624.500000 |
| 50% | 7.194596e+17 | 3603.500000 | 1473.500000 |
| 75% | 7.993058e+17 | 10122.250000 | 3652.000000 |
| max | 8.924206e+17 | 132810.000000 | 79515.000000 |
The tweet_data_clean dataframe looks clean, the only issue we need to address is 0 in favorite counts. There are no retweets in archive_clean, so merging tweet-data_clean with archive_clean, will solve the problem with 0 favorite counts. We will merge archive_clean with tweet_data_clean.
Then, we will merge the new dataframe with predictions_clean and store the result in our final master dataframe master_df
# Merge archive_clean and tweet_data_clean on tweet_id
master_df = pd.merge(archive_clean, tweet_data_clean, on='tweet_id', suffixes=('_archive', '_tweet'))
#check
master_df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1896 entries, 0 to 1895 Data columns (total 11 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1896 non-null int64 1 timestamp 1896 non-null datetime64[ns, UTC] 2 source 1896 non-null object 3 rating_numerator 1896 non-null int64 4 rating_denominator 1896 non-null int64 5 name 1350 non-null object 6 dog_type 294 non-null category 7 favorite_count 1896 non-null int64 8 retweet_count 1896 non-null int64 9 retweet_status 1896 non-null object 10 url 1896 non-null object dtypes: category(1), datetime64[ns, UTC](1), int64(5), object(4) memory usage: 165.0+ KB
The data_tweet_clean (stored in master_df) is clean and ready
Now, we will prepare the final Master dataframe by marging the master_df with predictions. Just in case, we will add a code to ensure that there are only dogs in the dataframe (dog_status==True)
# Merge the resulting dataframe with predictions_clean on tweet_id
master_df = pd.merge(master_df, predictions_clean, on='tweet_id')
# Display the merged DataFrame
print(master_df)
# Checking the count of predictions where dog_status is False
prediction_counts = master_df[master_df['dog_status'] == False]['prediction'].value_counts()
# Display the prediction counts
print(prediction_counts)
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
#check
master_df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5688 entries, 0 to 5687 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5688 non-null int64 1 timestamp 5688 non-null datetime64[ns, UTC] 2 source 5688 non-null object 3 rating_numerator 5688 non-null int64 4 rating_denominator 5688 non-null int64 5 name 4050 non-null object 6 dog_type 882 non-null category 7 favorite_count 5688 non-null int64 8 retweet_count 5688 non-null int64 9 retweet_status 5688 non-null object 10 url 5688 non-null object 11 jpg_url 5688 non-null object 12 img_num 5688 non-null int64 13 prediction_num 5688 non-null int32 14 prediction 5688 non-null category 15 confidence 5688 non-null float64 16 dog_status 5688 non-null bool dtypes: bool(1), category(2), datetime64[ns, UTC](1), float64(1), int32(1), int64(6), object(5) memory usage: 687.8+ KB
#check 2
master_df.head()
| tweet_id | timestamp | source | rating_numerator | rating_denominator | name | dog_type | favorite_count | retweet_count | retweet_status | url | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 1 | orange | 0.10 | False |
| 1 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 2 | bagel | 0.09 | False |
| 2 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 3 | banana | 0.08 | False |
| 3 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | NaN | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 1 | chihuahua | 0.32 | True |
| 4 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | NaN | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 2 | pekinese | 0.09 | True |
# Check for missing values and handle them if necessary
master_df.isnull().sum()
# Fill missing names with 'Unknown'
master_df['name'].fillna('Unknown', inplace=True)
#check
master_df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 5688 entries, 0 to 5687 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 5688 non-null int64 1 timestamp 5688 non-null datetime64[ns, UTC] 2 source 5688 non-null object 3 rating_numerator 5688 non-null int64 4 rating_denominator 5688 non-null int64 5 name 5688 non-null object 6 dog_type 882 non-null category 7 favorite_count 5688 non-null int64 8 retweet_count 5688 non-null int64 9 retweet_status 5688 non-null object 10 url 5688 non-null object 11 jpg_url 5688 non-null object 12 img_num 5688 non-null int64 13 prediction_num 5688 non-null int32 14 prediction 5688 non-null category 15 confidence 5688 non-null float64 16 dog_status 5688 non-null bool dtypes: bool(1), category(2), datetime64[ns, UTC](1), float64(1), int32(1), int64(6), object(5) memory usage: 687.8+ KB
#check2
master_df.head()
| tweet_id | timestamp | source | rating_numerator | rating_denominator | name | dog_type | favorite_count | retweet_count | retweet_status | url | jpg_url | img_num | prediction_num | prediction | confidence | dog_status | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 1 | orange | 0.10 | False |
| 1 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 2 | bagel | 0.09 | False |
| 2 | 892420643555336193 | 2017-08-01 16:23:56+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Phineas | NaN | 39467 | 8853 | Original tweet | https://t.co/MgUWQ76dJU | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | 3 | banana | 0.08 | False |
| 3 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | NaN | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 1 | chihuahua | 0.32 | True |
| 4 | 892177421306343426 | 2017-08-01 00:17:27+00:00 | <a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> | 13 | 10 | Tilly | NaN | 33819 | 6514 | Original tweet | https://t.co/0Xxu71qeIV | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 2 | pekinese | 0.09 | True |
The final master dataframe is ready. We will store it in a master csv file
#store master_df in a csv file
master_df.to_csv('twitter_archive_master.csv', index=False)
ANALYSING AND VISUALISING DATA
We will analyze and visualize the wrangled data.
We will produce at least three (3) insights and one (1) visualization. We willl clearly document the piece of assessed and cleaned (if necessary) data used to make each analysis and visualization.
1 INSIGHT We want to know what are the most popular dog breeds based on the number of posts, interactions by Twitter users (favorite and retweet counts), and ratings.
In order to do so we will:
Calculate dog_rating as the ratio of rating_numerator to rating_denominator.
Filter the data to include only rows where dog_status is True.
Group by dog breed (prediction) to calculate the number of posts (num_posts), total interactions (total_interactions), average interactions (avg_interactions), and average rating (avg_rating).
To identify the 10 Most Popular Breeds in each category, we will sort the breeds by num_posts, total_interactions, and avg_rating.
We will create bar plots to visualise the top 10 dog breeds by the number of posts, total interactions, and average rating.
# Calculate dog rating as the ratio of rating_numerator to rating_denominator
master_df['dog_rating'] = master_df['rating_numerator'] / master_df['rating_denominator']
# Filter the data to include only rows where dog_status is True
filtered_master_df = master_df[master_df['dog_status'] == True]
# Group by dog breed to calculate aggregate statistics
breed_stats = filtered_master_df.groupby('prediction').agg(
num_posts=('tweet_id', 'count'),
total_interactions=('favorite_count', 'sum'),
avg_interactions=('favorite_count', 'mean'),
avg_rating=('dog_rating', 'mean')
).reset_index()
# Sort the breeds by different metrics to identify the most popular breeds
most_posts = breed_stats.sort_values(by='num_posts', ascending=False).head(10)
most_interactions = breed_stats.sort_values(by='total_interactions', ascending=False).head(10)
highest_avg_rating = breed_stats.sort_values(by='avg_rating', ascending=False).head(10)
# Print the results
print("Most Popular Dog Breeds by Number of Posts:")
print(most_posts)
print("\nMost Popular Dog Breeds by Total Interactions:")
print(most_interactions)
print("\nDog Breeds with Highest Average Rating:")
print(highest_avg_rating)
Most Popular Dog Breeds by Number of Posts:
prediction num_posts total_interactions avg_interactions \
307 labrador_retriever 260 3266021 12561.619231
229 golden_retriever 258 2927162 11345.589147
125 chihuahua 173 1480702 8558.971098
410 pembroke 135 1574113 11660.096296
112 cardigan 108 1305470 12087.685185
427 pomeranian 98 1120674 11435.448980
573 toy_poodle 97 729479 7520.402062
129 chow 88 814134 9251.522727
214 french_bulldog 88 924421 10504.784091
136 cocker_spaniel 85 872201 10261.188235
avg_rating
307 1.144026
229 1.152507
125 1.064372
410 1.148148
112 1.145370
427 1.186735
573 1.073196
129 1.206818
214 1.047727
136 1.142353
Most Popular Dog Breeds by Total Interactions:
prediction num_posts total_interactions \
307 labrador_retriever 260 3266021
229 golden_retriever 258 2927162
410 pembroke 135 1574113
125 chihuahua 173 1480702
112 cardigan 108 1305470
427 pomeranian 98 1120674
214 french_bulldog 88 924421
136 cocker_spaniel 85 872201
122 chesapeake_bay_retriever 84 846967
129 chow 88 814134
avg_interactions avg_rating
307 12561.619231 1.144026
229 11345.589147 1.152507
410 11660.096296 1.148148
125 8558.971098 1.064372
112 12087.685185 1.145370
427 11435.448980 1.186735
214 10504.784091 1.047727
136 10261.188235 1.142353
122 10082.940476 1.091667
129 9251.522727 1.206818
Dog Breeds with Highest Average Rating:
prediction num_posts total_interactions avg_interactions \
134 clumber 8 86102 10762.750000
84 bouvier_des_flandres 2 25149 12574.500000
559 tibetan_mastiff 31 464559 14985.774194
129 chow 88 814134 9251.522727
299 kerry_blue_terrier 2 11342 5671.000000
427 pomeranian 98 1120674 11435.448980
469 saluki 22 286872 13039.636364
470 samoyed 61 694838 11390.786885
199 entlebucher 8 66482 8310.250000
93 briard 8 91464 11433.000000
avg_rating
134 1.325000
84 1.300000
559 1.271889
129 1.206818
299 1.200000
427 1.186735
469 1.172727
470 1.170492
199 1.162500
93 1.162500
# Plotting the top 10 breeds by number of posts
plt.figure(figsize=(12, 6))
sns.countplot(data=filtered_master_df[filtered_master_df['prediction'].isin(most_posts['prediction'])],
y='prediction', palette='colorblind', order=most_posts['prediction'])
plt.title('Top 10 Most Popular Dog Breeds by Number of Posts')
plt.xlabel('Number of Posts')
plt.ylabel('Dog Breed')
plt.show()
# Plotting the top 10 breeds by total interactions
plt.figure(figsize=(12, 6))
sns.countplot(data=filtered_master_df[filtered_master_df['prediction'].isin(most_interactions['prediction'])],
y='prediction', palette='colorblind', order=most_interactions['prediction'])
plt.title('Top 10 Most Popular Dog Breeds by Total Interactions')
plt.xlabel('Total Interactions (Favorite + Retweet Counts)')
plt.ylabel('Dog Breed')
plt.show()
# Plotting the top 10 breeds by average rating
plt.figure(figsize=(12, 6))
sns.countplot(data=filtered_master_df[filtered_master_df['prediction'].isin(highest_avg_rating['prediction'])],
y='prediction', palette='colorblind', order=highest_avg_rating['prediction'])
plt.title('Top 10 Dog Breeds with Highest Average Rating')
plt.xlabel('Average Rating')
plt.ylabel('Dog Breed')
plt.show()
FOR THE SUMMARY:
This Labrador Retriever and Golden Retriever are the most popular dog breeds by the number of posts, significantly outpacing other breeds.
Chihuahua, Pembroke, and Cardigan also have a substantial number of posts.
Pomeranian, Toy Poodle, Chow, French Bulldog, and Cocker Spaniel complete the top 10, indicating a diverse range of breeds being popular on Twitter.
Labrador Retriever and Golden Retriever lead in total interactions, mirroring their popularity in the number of posts.
Pembroke and Chihuahua also rank high in total interactions.
Cardigan, Pomeranian, French Bulldog, Cocker Spaniel, Chesapeake Bay Retriever, and Chow make up the rest of the top 10. The engagement (favorite + retweet counts) follows a similar pattern to the number of posts, with popular breeds maintaining their high interaction rates.
Chow and Pomeranian have the highest average ratings, indicating that when these breeds are posted about, they tend to receive very positive ratings.
Samoyed and Saluki also have high average ratings, suggesting strong liking or approval from Twitter users.
Tibetan Mastiff, Entlebucher, Briard, Kerry Blue Terrier, Bouvier des Flandres, and Clumber round out the top 10, showing a mix of both common and rare breeds receiving high ratings.
This metric highlights breeds that might not have the highest post or interaction counts but are highly rated when they do appear.
Summary: Labrador Retriever and Golden Retriever dominate in both the number of posts and total interactions, indicating their overall popularity.
Chihuahua, Pembroke, and Cardigan also show significant presence and engagement.
The highest average ratings feature some breeds that are not necessarily the most posted or interacted with, suggesting that specific breeds generate strong positive sentiment among those who do post about them. These insights can be useful for understanding trends in dog breed popularity and engagement on Twitter.
3 INSIGHT What is the correlation between Favorite Counts and Retweet Counts
# Calculate correlation
correlation = master_df['favorite_count'].corr(master_df['retweet_count'])
print(f'Correlation between favorite counts and retweet counts: {correlation:.2f}')
# Plot the correlation
plt.figure(figsize=(10, 6))
sns.scatterplot(x='favorite_count', y='retweet_count', data=master_df)
plt.title('Favorite Counts vs. Retweet Counts')
plt.xlabel('Favorite Count')
plt.ylabel('Retweet Count')
plt.show()
Correlation between favorite counts and retweet counts: 0.91
FOR THE SUMMARY
The correlation coefficient between favorite counts and retweet counts is 0.91.
The correlation coefficient is a measure of the strength and direction of the linear relationship between two variables. It ranges from -1 to 1: +1 indicates a perfect positive linear relationship. 0 indicates no linear relationship. -1 indicates a perfect negative linear relationship.
A correlation coefficient of 0.91 indicates a very strong positive linear relationship between favorite counts and retweet counts.
This means that tweets that receive a high number of favorites also tend to receive a high number of retweets, and vice versa.
In other words, as the number of favorite counts increases, the number of retweet counts also increases proportionally.
Scatter Plot Analysis:
The scatter plot visually confirms the strong positive correlation. (The points are closely clustered along an upward-sloping line, suggesting that higher favorite counts are associated with higher retweet counts).
There are a few outliers where tweets have an exceptionally high number of favorites or retweets, but the overall trend is clearly positive.
Conclusion The high correlation and the scatter plot together suggest that favorite counts and retweet counts are strongly related. When analyzing tweet popularity or engagement, both metrics are likely to move together, making either a good indicator of the other.
We want to explore the relationsip further.
We will perform a linear regression analysis to model the relationship between favorite counts and retweet counts.
This will allow us to predict retweet counts based on favorite counts more precisely.
Building the model:
1.Prepare the Data:
We will extract the favorite_count as the independent variable (X) and retweet_count as the dependent variable (y).
2.Add a Constant:
We will add a constant term to X using sm.add_constant(X). This is necessary to include the intercept in the regression model.
3.Fit the Model:
We will use the OLS method from statsmodels to fit the regression model. We will call the fit method to estimate the model parameters.
4.Print the Model Summary:
The summary method will provide a detailed summary of the regression results, including the coefficients, R-squared value, p-values, and more.
5.Interpretation of the Regression Results: The summary output will include:
Coefficients: The intercept and slope of the regression line. R-squared: The proportion of the variance in the dependent variable that is predictable from the independent variable. P-values: Statistical significance of the coefficients. Standard Errors: The accuracy of the coefficients' estimates.
import statsmodels.api as sm
# Prepare the data
X = master_df['favorite_count']
y = master_df['retweet_count']
# Add a constant to the independent variable for the intercept term
X = sm.add_constant(X)
# Fit the regression model
model = sm.OLS(y, X).fit()
# Print the model summary
print(model.summary())
OLS Regression Results
==============================================================================
Dep. Variable: retweet_count R-squared: 0.830
Model: OLS Adj. R-squared: 0.830
Method: Least Squares F-statistic: 2.786e+04
Date: Mon, 24 Jun 2024 Prob (F-statistic): 0.00
Time: 13:45:28 Log-Likelihood: -51129.
No. Observations: 5688 AIC: 1.023e+05
Df Residuals: 5686 BIC: 1.023e+05
Df Model: 1
Covariance Type: nonrobust
==================================================================================
coef std err t P>|t| [0.025 0.975]
----------------------------------------------------------------------------------
const -368.9635 31.970 -11.541 0.000 -431.637 -306.290
favorite_count 0.3505 0.002 166.904 0.000 0.346 0.355
==============================================================================
Omnibus: 6211.720 Durbin-Watson: 0.444
Prob(Omnibus): 0.000 Jarque-Bera (JB): 1452517.900
Skew: 5.127 Prob(JB): 0.00
Kurtosis: 80.612 Cond. No. 1.89e+04
==============================================================================
Notes:
[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.
[2] The condition number is large, 1.89e+04. This might indicate that there are
strong multicollinearity or other numerical problems.
C:\Users\Manuela\anaconda3\lib\site-packages\statsmodels\tsa\tsatools.py:142: FutureWarning: In a future version of pandas all arguments of concat except for the argument 'objs' will be keyword-only x = pd.concat(x[::order], 1)
Visualise the result in a scatter plot but this time with the regresion line
# Scatter plot of favorite_count vs. retweet_count
plt.figure(figsize=(10, 6))
sns.scatterplot(x='favorite_count', y='retweet_count', data=master_df, alpha=0.5)
# Regression line from the OLS model
favorite_count_values = np.linspace(master_df['favorite_count'].min(), master_df['favorite_count'].max(), 100)
X_values = sm.add_constant(favorite_count_values)
retweet_count_pred = model.predict(X_values)
plt.plot(favorite_count_values, retweet_count_pred, color='red', linewidth=2, label='OLS Regression Line')
# Labels and title
plt.xlabel('Favorite Count')
plt.ylabel('Retweet Count')
plt.title('Correlation between Favorite Count and Retweet Count')
plt.legend()
plt.show()
FOR THE SUMMMARY:
The results of the OLS regression analysis from the provided summary.
Key Points:
Dependent Variable: retweet_count
Independent Variable: favorite_count
R-squared: 0.830 This indicates that approximately 83% of the variance in retweet counts can be explained by the favorite counts. This is a very high value, suggesting a strong relationship.
Adjusted R-squared: 0.830 Similar to the R-squared, this value is adjusted for the number of predictors in the model. It is also very high, indicating a strong fit.
Coefficients:
Intercept (const): -368.9635 This is the predicted value of retweet_count when favorite_count is zero. It suggests that without any favorites, a tweet might have negative retweets, which isn't practical but can be interpreted as no baseline retweets.
Slope (favorite_count): 0.3505 For each additional favorite, the model predicts an increase of approximately 0.35 retweets. This coefficient is highly significant (p < 0.000).
Statistical Significance: P-values: Both the intercept and the slope have p-values < 0.000, indicating that they are statistically significant at any common significance level (e.g., 0.05).
T-statistics: The t-values for both coefficients are very high, further confirming their significance.
Model Diagnostics: F-statistic: 2.786e+04 with a p-value < 0.000
The model as a whole is statistically significant. Durbin-Watson: 0.444
This value is used to detect the presence of autocorrelation. Values closer to 2 are ideal. A value of 0.444 suggests positive autocorrelation. Condition Number: 1.89e+04
This indicates potential multicollinearity issues. However, since we only have one predictor, it might indicate numerical stability issues.
Conclusion:
The regression model shows a very strong positive relationship between favorite counts and retweet counts.
For each additional favorite, retweets are expected to increase by about 0.35.
The model explains a significant portion of the variability in retweet counts (R-squared = 0.83).
Both the predictor and the overall model are statistically significant.
We could continue the analysis with this regression model by extending it by including additional predictors: like the month or the dog breed. But for this project we will stop here.
4 INSIGHT
We want to identify trends in dog ratings over time,
We will create a time series plot. This plot will show how the average rating has changed over the years.
We can also visualize the number of tweets over time to see if there are any patterns or trends in tweet activity.
In order to do the above we will create and interpret the visualisations:
First, we will set the timestamp as the index of the DataFrame.
Then, we will resample the data by month to get the average rating and the count of tweets.
Finally we will plot the average rating over time and the count of tweets over time.
# Set 'timestamp' as the index
master_df.set_index('timestamp', inplace=True)
# Calculate rating
master_df['rating'] = master_df['rating_numerator'] / master_df['rating_denominator']
# Resample by month and calculate mean rating
monthly_rating = master_df['rating'].resample('M').mean()
# Plot the average rating over time
plt.figure(figsize=(12, 6))
sns.lineplot(data=monthly_rating, marker='o')
plt.title('Average Dog Rating Over Time')
plt.xlabel('Date')
plt.ylabel('Average Rating')
plt.show()
FOR THE SUMMARY:
The Average Dog Rating Over Time:
Overall Trend: The average dog rating shows a general stability with values hovering around 1.0 throughout most of the observed period.
There is a noticeable spike in the average rating around mid-2016, reaching above 3.0. This spike is an outlier compared to the rest of the data points. This could indicate a particular event or series of posts that received exceptionally high ratings during that time.
Following the spike, the average rating drops back to around 1.0 and shows slight fluctuations but generally remains stable. This indicates that the spike was a singular event rather than a sustained trend of higher ratings.
For the remainder of the period, from late 2016 to mid-2017, the average rating remains relatively stable, with minor increases and decreases but no other significant spikes.
Summary: The average dog rating is relatively stable over time, suggesting consistent user engagement and rating behavior for most of the period.
The significant spike (outlier)around mid-2016 could be investigated further to understand the cause—possibly a viral post or a highly popular dog breed that skewed the ratings temporarily.
The return to stability after the spike indicates that the high ratings were not a sustained trend but rather an anomaly.
5 INSIGHT:
Based on the above result, we want to check for seasonal patterns or trends in number of tweets by breaking down the data into smaller monthly time periods. We will prepare a visualisation in order to do so.
For the future reference: it would be interesting to conduct a comparison of the average ratings with other metrics like total interactions (favorites and retweets) or the number of posts to see if there are any correlations.
# Resample by month and count the number of tweets
monthly_tweet_count = master_df['tweet_id'].resample('M').count()
# Plot the count of tweets over time
plt.figure(figsize=(12, 6))
sns.lineplot(data=monthly_tweet_count, marker='o', color='green')
plt.title('Number of Tweets Over Time')
plt.xlabel('Date')
plt.ylabel('Number of Tweets')
plt.show()
FOR THE SUMMARY:
The Number of Tweets Over Time:
The plot shows a high number of tweets at the beginning of the observed period, particularly around early 2016, peaking at over 1000 tweets in a single month.
Following the peak, there is a sharp decline in the number of tweets over the next few months. By mid-2016, the number of tweets drops significantly to around 200 per month.
After mid-2016, the number of tweets stabilizes, fluctuating around 200 tweets per month with minor variations. There is no significant upward or downward trend after the initial decline, indicating a period of steady activity.
Towards the end of the observed period, specifically around mid-2017, there is another noticeable decline in the number of tweets, dropping to below 100 tweets per month.
Summary:
There was an initial surge in the number of tweets, peaking in early 2016. This could be due to increased popularity or a specific event driving higher engagement.
The sharp decline after the peak indicates that the initial surge was not sustained. This could be due to various factors such as changes in user interest, etc.
The stabilization period indicates a consistent level of activity with around 200 tweets per month. It might be suggesting a loyal user base or stable content production.
The decline towards the end of the period might indicate a drop in engagement or content production.
Alle these result could be investigated further. For example, we could: 1.Analyze the content and context of tweets during the peak period to understand what drove the high volume of tweets. 2.Look into the content and engagement strategies during the stabilization period to understand what kept the engagement steady. 3.Investigate the factors leading to the decline in tweets towards the end of the period to identify potential areas for improvement or changes in strategy.
However, in this project, we will not investigate it further.
6 INSIGHT: We want to know what are the most popular dog types in the dataset. To check it, we will prepare a visualisation for distribution of dog types.
# Visualisation for Distribution of dog types
dog_type_counts = master_df['dog_type'].value_counts()
plt.figure(figsize=(12, 6))
sns.barplot(x=dog_type_counts.index, y=dog_type_counts.values, palette='colorblind')
plt.title('Distribution of Dog Types')
plt.xlabel('Dog Type')
plt.ylabel('Count')
plt.xticks(rotation=45)
plt.show()
FOR THE SUMMARY:
Popularity of Dog Types: Dog type 'pupper' (1st place with count between 500 and 600) and 'doggo' (2nd place with count between 100 and 200) are significantly more common in the dataset, which could indicate either a bias in the data collection or genuine popularity among the Twitter users.
Credentials: